import pyautogui
import time
im=pyautogui.screenshot()
b=im.getpixel((511,1002))
print(b)
c=0
while b!=(255, 220, 0):time.sleep(1)c=c+1print(c) b=pyautogui.screenshot().getpixel((511,1002))print(b)
print(pyautogui.pixelMatchesColor(511,1002,(255,220,0)))
同一代码,运行几次后居然报错。
pyautogui.pixelMatchesColor
不稳定,不建议使用。