mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 08:48:30 +00:00
19 lines
421 B
C#
19 lines
421 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// As Pixel-Data BGRA
|
|
/// </summary>
|
|
/// <returns>The Pixel-Data</returns>
|
|
byte[] CaptureScreen();
|
|
}
|
|
}
|