Python3.x中获取屏幕上像素的颜色

发布于 2025-01-01 17:05:25 字数 112 浏览 1 评论 0原文

我想在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2025-01-08 17:05:25

在Python3.x上可以使用PIL;有一个Windows 二进制安装程序。该代码可能无法在 Python2.x 和 Python3.x 上正常工作:

try: import Image         # Python 2.x
except ImportError:
    from PIL import Image # Python 3.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:

try: import Image         # Python 2.x
except ImportError:
    from PIL import Image # Python 3.x

You could capture an area of the screen using an analog of grab() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文