// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Platform
{
///
/// Defines the platform-specific interface for a .
///
public interface IBitmapImpl
{
///
/// Gets the width of the bitmap, in pixels.
///
int PixelWidth { get; }
///
/// Gets the height of the bitmap, in pixels.
///
int PixelHeight { get; }
///
/// Saves the bitmap to a file.
///
/// The filename.
void Save(string fileName);
}
}