現在、非常に遅い方法を使用せずに、ターゲット ウィンドウからコピーされたビットマップの個々のピクセルにアクセスしてテストする方法を探していますGetPixel()
。memDC
呼び出された時点でビットマップのコピーが含まれている場合BitBlt()
、個々のピクセルをトラバースしてその値をテストするより高速な方法はありますか?
HWND target = (HWND)0x0002051A; // this is just for debugging; when i get to the release version it will detect the intended window automatically
HBITMAP hBitmap;
RECT winRect;
HDC winDC, memDC;
winDC = GetDC(target);
GetClientRect(target, &winRect);
memDC = CreateCompatibleDC(winDC);
hBitmap = CreateCompatibleBitmap(winDC, winRect.right-winRect.left, winRect.bottom-winRect.top);
SelectObject(memDC, hBitmap);
BitBlt(memDC, 0, 0, winRect.right-winRect.left, winRect.bottom-winRect.top, winDC, 0, 0, SRCCOPY);
// Perform other tasks based on the color values of pixels...
ReleaseDC(memDC);
ReleaseDC(winDC);
DeleteObject(hBitmap);