2

我有一个远程应用程序,它使用“Windows 句柄”截屏。(我的意思是HDC,,HBITMAP....)。

代码如下所示:

int nScreenWidth = GetSystemMetrics(SM_CXSCREEN);
int nScreenHeight = GetSystemMetrics(SM_CYSCREEN);
HDC hDesktopDC = CreateDC(TEXT("DISPLAY"),NULL,NULL,NULL);
HDC hCaptureDC = CreateCompatibleDC(hDesktopDC);

HBITMAP hCaptureBitmap =CreateCompatibleBitmap(
    hDesktopDC, 
    nScreenWidth,
    nScreenHeight);

SelectObject(hCaptureDC,hCaptureBitmap); 

BitBlt(
    hCaptureDC,
    0,0,
    nScreenWidth,nScreenHeight,
    hDesktopDC,
    0,0,
    SRCCOPY); 

BITMAPINFOHEADER   info;

info.biSize = sizeof(BITMAPINFOHEADER);
info.biWidth = nScreenWidth;   
info.biHeight = nScreenHeight; 
info.biPlanes = 1; 
info.biBitCount = 32;
info.biCompression = BI_RGB;    
info.biSizeImage = 0;
info.biXPelsPerMeter = 0;
info.biYPelsPerMeter = 0;
info.biClrUsed = 0;
info.biClrImportant = 0;

//reteive the image data 
byte *bits= (byte*)malloc(nScreenWidth*nScreenHeight*4);
GetDIBits(hDesktopDC,   // handle to DC
    hCaptureBitmap,     // handle to bitmap
    0,                  // first scan line to set
    nScreenHeight,      // number of scan lines to copy
    bits,               // array for bitmap bits
    (BITMAPINFO*)&info, // bitmap data buffer
    DIB_RGB_COLORS      // RGB 
    );

DeleteDC(hDesktopDC);
DeleteDC(hCaptureDC);
DeleteObject(hCaptureBitmap);

经过多次循环(大约 2000 次)CreateDC()函数 return NULL。而且,如果我旧的 DC(意味着初始化一次,然后在应用程序退出时销毁)我的应用程序窗口轻弹(或它的一部分),甚至完全不可见。

因此,我需要知道如何解决这个问题或知道任何其他更好的方法来获取屏幕图像(位/RGB 数据)。

4

0 回答 0