Answers for "c++ capture screen as pixel array"

C++
0

c++ capture screen as pixel array

HWND desktop = GetDesktopWindow();
HDC desktopHdc = GetDC(desktop);
COLORREF color = GetPixel(desktopHdc, x, y);
Posted by: Guest on December-29-2020

Browse Popular Code Answers by Language