用于获取颜色坐标不起作用的函数

问题描述 投票:0回答:2

它现在正在工作,结果是:“无”

blue = [70, 238, 255]

def FindColor(color):
    image = ImageGrab.grab()
    for x in range(1, 400):
        for y in range(1,400):
            px = image.getpixel((x, y))
            if px[0] == color[0] and px[1] == color[1] and px[2] == color[2]:
                return (x, y)

FindColor(blue)
python
2个回答
© www.soinside.com 2019 - 2024. All rights reserved.