Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我做了相当多的研究,无济于事。我需要找出用于随时访问 Windows 桌面上显示的图像的 Windows API。我希望能够在像素级别读/写。(我所有的 Google 搜索结果都指向远程桌面软件的链接!)
您可以GetDC(NULL);获取屏幕的设备上下文。有了这个,您可以使用CreateCompatibleDC获取自己的副本,CreateCompatibleBitmap然后使用SelectObject并将BitBlit位图复制到您可以操作它的本地位图。
GetDC(NULL);
CreateCompatibleDC
CreateCompatibleBitmap
SelectObject
BitBlit