using System;
using System.Windows.Media;
namespace Example_Ambilight_full.TakeAsIs.ScreenCapturing
{
public interface IScreenCapture : IDisposable
{
int Width { get; }
int Height { get; }
PixelFormat PixelFormat { get; }
///
/// As Pixel-Data BGRA
///
/// The Pixel-Data
byte[] CaptureScreen();
}
}