Python3.x中获取屏幕上像素的颜色
我想在Python3.x中获取屏幕上像素的颜色。 (例如x,y) 我在窗户上工作。并使用 tkinter。 但是,它不能在 Python 3.x 中使用 PIL。
我怎样才能做到这一点。 谢谢。
I want to get the color of pixels on the screen in Python3.x. (example x,y)
I work on windows. and using tkinter.
But, It can't use PIL in Python 3.x.
How can i do this.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在Python3.x上可以使用PIL;有一个Windows 二进制安装程序。该代码可能无法在 Python2.x 和 Python3.x 上正常工作:
您可以使用
grab()
方法。You can use PIL on Python3.x; there is a binary installer for Windows. The code might not work as is both on Python2.x and Python3.x:
You could capture an area of the screen using an analog of
grab()
method.