windll.user32.ReleaseDC failed : return 0

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+1
    print(c)    
    b=pyautogui.screenshot().getpixel((511,1002))
    print(b)
print(pyautogui.pixelMatchesColor(511,1002,(255,220,0)))

windll.user32.ReleaseDC failed : return 0_第1张图片
同一代码,运行几次后居然报错。
pyautogui.pixelMatchesColor
不稳定,不建议使用。

你可能感兴趣的:(python,visual,studio,code)