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.
假设在我的计算机显示器(任何应用程序)上某处可见一个橙色圆圈。如何在屏幕上搜索橙色,然后获取该橙色圆圈的鼠标坐标(不必位于圆圈的中心)。
您首先需要做一个ScreenCapture,请参阅此线程以获取更多信息。然后,您想阅读生成的图像,请参阅此线程LockBits以获取和的建议GetPixel。然后,只需将像素值与您要查找的颜色进行比较。然后,您将获得像素的 X/Y 坐标,不涉及任何鼠标。
ScreenCapture
LockBits
GetPixel