它现在正在工作,结果是:“无”
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)