如何获取光标下的像素颜色?
我需要一个快速的命令行应用程序来返回鼠标光标下像素的颜色。
我如何在 VC++ 中构建它,我需要类似于 这个,但理想情况下不是在 .NET 中,这样它可以每秒运行多次?
I need a fast command line app to return the color of the pixel under the mouse cursor.
How can I build this in VC++, I need something similar to this, but ideally not in .NET so it can be run many times per second?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从我的头脑中,直接的方式:
预计到达时间:似乎有效,至少对我来说。
ETA2:添加了一些错误检查
ETA3:注释代码、编译的可执行文件和 Visual Studio 解决方案可以在 我的 SVN 存储库。
Off the top of my head, the straightforward way:
ETA: Appears to work, at least for me.
ETA2: Added some error checking
ETA3: Commented code, compiled executable and a Visual Studio Solution can be found in my SVN repository.