// -----------------------------------------------------------------------
//
// Copyright 2013 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Media.Imaging
{
using System;
using Perspex.Platform;
using Splat;
public class RenderTargetBitmap : Bitmap, IDisposable
{
public RenderTargetBitmap(int width, int height)
: base(CreateImpl(width, height))
{
}
public new IRenderTargetBitmapImpl PlatformImpl
{
get { return (IRenderTargetBitmapImpl)base.PlatformImpl; }
}
public void Render(IVisual visual)
{
this.PlatformImpl.Render(visual);
}
public void Dispose()
{
this.PlatformImpl.Dispose();
}
private static IBitmapImpl CreateImpl(int width, int height)
{
IPlatformRenderInterface factory = Locator.Current.GetService();
return factory.CreateRenderTargetBitmap(width, height);
}
}
}