当前位置: 代码迷 >> 综合 >> windll.user32.ReleaseDC failed : return 0
  详细解决方案

windll.user32.ReleaseDC failed : return 0

热度:3   发布时间:2024-03-08 14:38:10.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+1print(c)    b=pyautogui.screenshot().getpixel((511,1002))print(b)
print(pyautogui.pixelMatchesColor(511,1002,(255,220,0)))

在这里插入图片描述
同一代码,运行几次后居然报错。
pyautogui.pixelMatchesColor
不稳定,不建议使用。

  相关解决方案