获取屏幕像素作为字节数组
Getting the screen pixels as byte array
我需要更改屏幕捕获代码以获取像素数组而不是位图。
我将代码更改为:
BitBlt > Image.FromHbitmap(pointer) > LockBits > pixel array
但是,我正在检查是否可以削减一些中间人,并且有这样的东西:
BitBlt > Marshal.Copy > pixel array
甚至:
WinApi method that gets the screen region as a pixel array
到目前为止,我尝试使用这段代码,但没有成功:
public static byte[] CaptureAsArray(Size size, int positionX, int positionY)
{
var hDesk = GetDesktopWindow();
var hSrce = GetWindowDC(hDesk);
var hDest = CreateCompatibleDC(hSrce);
var hBmp = CreateCompatibleBitmap(hSrce, (int)size.Width, (int)size.Height);
var hOldBmp = SelectObject(hDest, hBmp);
try
{
new System.Security.Permissions.UIPermission(System.Security.Permissions.UIPermissionWindow.AllWindows).Demand();
var b = BitBlt(hDest, 0, 0, (int)size.Width, (int)size.Height, hSrce, positionX, positionY, CopyPixelOperation.SourceCopy | CopyPixelOperation.CaptureBlt);
var length = 4 * (int)size.Width * (int)size.Height;
var bytes = new byte[length];
Marshal.Copy(hBmp, bytes, 0, length);
//return b ? Image.FromHbitmap(hBmp) : null;
return bytes;
}
finally
{
SelectObject(hDest, hOldBmp);
DeleteObject(hBmp);
DeleteDC(hDest);
ReleaseDC(hDesk, hSrce);
}
return null;
}
此代码在踩 Marshal.Copy
时给了我一个 System.AccessViolationException
。
在使用 BitBlt 或类似的屏幕捕获方法时,是否有更有效的方法将屏幕像素作为字节数组获取?
编辑:
正如在 here 中找到的和 CodyGray 所建议的那样,我应该使用
var b = Native.BitBlt(_compatibleDeviceContext, 0, 0, Width, Height, _windowDeviceContext, Left, Top, Native.CopyPixelOperation.SourceCopy | Native.CopyPixelOperation.CaptureBlt);
var bi = new Native.BITMAPINFOHEADER();
bi.biSize = (uint)Marshal.SizeOf(bi);
bi.biBitCount = 32;
bi.biClrUsed = 0;
bi.biClrImportant = 0;
bi.biCompression = 0;
bi.biHeight = Height;
bi.biWidth = Width;
bi.biPlanes = 1;
var data = new byte[4 * Width * Height];
Native.GetDIBits(_windowDeviceContext, _compatibleBitmap, 0, (uint)Height, data, ref bi, Native.DIB_Color_Mode.DIB_RGB_COLORS);
我的 data
数组包含屏幕截图的所有像素。
现在,我要测试是否有任何性能改进。
是的,您不能通过 HBITMAP
(由 CreateCompatibleBitmap
返回)开始访问 BITMAP
对象的原始位。 HBITMAP
顾名思义,只是一个句柄。它不是经典 "C" 意义上的指向数组开头的指针。句柄就像间接指针。
GetDIBits
是从可以迭代的位图中获取原始的、与设备无关的像素数组的合适解决方案。但是您仍然需要首先使用获取屏幕位图所需的代码。本质上,你想要 this 这样的东西。当然,您需要将其翻译成 C#,但这应该不难,因为您已经知道如何调用 WinAPI 函数。
请注意,您不需要调用 GetDesktopWindow
或 GetWindowDC
。只需将 NULL
作为句柄传递给 GetDC
;它具有返回屏幕 DC 的相同效果,然后您可以使用它来创建兼容的位图。通常,您几乎不应该调用 GetDesktopWindow
。
我需要更改屏幕捕获代码以获取像素数组而不是位图。
我将代码更改为:
BitBlt > Image.FromHbitmap(pointer) > LockBits > pixel array
但是,我正在检查是否可以削减一些中间人,并且有这样的东西:
BitBlt > Marshal.Copy > pixel array
甚至:
WinApi method that gets the screen region as a pixel array
到目前为止,我尝试使用这段代码,但没有成功:
public static byte[] CaptureAsArray(Size size, int positionX, int positionY)
{
var hDesk = GetDesktopWindow();
var hSrce = GetWindowDC(hDesk);
var hDest = CreateCompatibleDC(hSrce);
var hBmp = CreateCompatibleBitmap(hSrce, (int)size.Width, (int)size.Height);
var hOldBmp = SelectObject(hDest, hBmp);
try
{
new System.Security.Permissions.UIPermission(System.Security.Permissions.UIPermissionWindow.AllWindows).Demand();
var b = BitBlt(hDest, 0, 0, (int)size.Width, (int)size.Height, hSrce, positionX, positionY, CopyPixelOperation.SourceCopy | CopyPixelOperation.CaptureBlt);
var length = 4 * (int)size.Width * (int)size.Height;
var bytes = new byte[length];
Marshal.Copy(hBmp, bytes, 0, length);
//return b ? Image.FromHbitmap(hBmp) : null;
return bytes;
}
finally
{
SelectObject(hDest, hOldBmp);
DeleteObject(hBmp);
DeleteDC(hDest);
ReleaseDC(hDesk, hSrce);
}
return null;
}
此代码在踩 Marshal.Copy
时给了我一个 System.AccessViolationException
。
在使用 BitBlt 或类似的屏幕捕获方法时,是否有更有效的方法将屏幕像素作为字节数组获取?
编辑:
正如在 here 中找到的和 CodyGray 所建议的那样,我应该使用
var b = Native.BitBlt(_compatibleDeviceContext, 0, 0, Width, Height, _windowDeviceContext, Left, Top, Native.CopyPixelOperation.SourceCopy | Native.CopyPixelOperation.CaptureBlt);
var bi = new Native.BITMAPINFOHEADER();
bi.biSize = (uint)Marshal.SizeOf(bi);
bi.biBitCount = 32;
bi.biClrUsed = 0;
bi.biClrImportant = 0;
bi.biCompression = 0;
bi.biHeight = Height;
bi.biWidth = Width;
bi.biPlanes = 1;
var data = new byte[4 * Width * Height];
Native.GetDIBits(_windowDeviceContext, _compatibleBitmap, 0, (uint)Height, data, ref bi, Native.DIB_Color_Mode.DIB_RGB_COLORS);
我的 data
数组包含屏幕截图的所有像素。
现在,我要测试是否有任何性能改进。
是的,您不能通过 HBITMAP
(由 CreateCompatibleBitmap
返回)开始访问 BITMAP
对象的原始位。 HBITMAP
顾名思义,只是一个句柄。它不是经典 "C" 意义上的指向数组开头的指针。句柄就像间接指针。
GetDIBits
是从可以迭代的位图中获取原始的、与设备无关的像素数组的合适解决方案。但是您仍然需要首先使用获取屏幕位图所需的代码。本质上,你想要 this 这样的东西。当然,您需要将其翻译成 C#,但这应该不难,因为您已经知道如何调用 WinAPI 函数。
请注意,您不需要调用 GetDesktopWindow
或 GetWindowDC
。只需将 NULL
作为句柄传递给 GetDC
;它具有返回屏幕 DC 的相同效果,然后您可以使用它来创建兼容的位图。通常,您几乎不应该调用 GetDesktopWindow
。