作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 PIL 中的 ImageGrab 来获取屏幕上特定像素的 RGB 值。我无法理解在哪里设置 x 和 y 坐标以获取像素。这是到目前为止的模式代码:
from PIL import ImageGrab
import threading
def getcol():
global pxcolor
threading.Timer(0.5, getcol).start()
pixel=ImageGrab.grab().load()
for y in range(0,1,1):
for x in range(0,1,1):
pxcolor=pixel[x,y]
print(pxcolor)
getcol()
我尝试更改 x
和 y
的 range
值,但这改变了打印的方式。我是一个初学者,对于这个愚蠢的问题我感到很抱歉,但我已经研究了很长时间并且无法弄清楚。目前它只是从屏幕左上角获取像素。我想捕获 1920x1080 屏幕上的单个中间像素。
谢谢。
最佳答案
未经测试,但是像这样指定 bounding box仅 1x1 像素:
pixel=ImageGrab.grab((960,540,961,541))
如果你检查它,它会给你这个:
<PIL.Image.Image image mode=RGBA size=1x1 at 0x120668748>
关于python - 设置 ImageGrab 从中获取像素颜色的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54352335/
这个问题在这里已经有了答案: Is a moved-from vector always empty? (4 个答案) 关闭 4 年前。 从 std::vector move 数据后,它的容量是否必
我是一名优秀的程序员,十分优秀!