错误:(0,“ GetPixel”,“无错误消息”)

时间:2019-12-27 16:12:41

标签: python

我遇到错误

(color = win32gui.GetPixel(win32gui.GetDC(win32gui.GetActiveWindow()), x , y) error: (0, 'GetPixel', 'No error message is available'))

尝试运行以下代码时。

def get_position_and_color():
    a=0
    while a<=3:
        sleep(1)
        x, y = win32api.GetCursorPos()
        color = win32gui.GetPixel(win32gui.GetDC(win32gui.GetActiveWindow()), x , y)
        print(str(a)+' '+str(x)+','+str(y)+','+str(color))
        # print(a)
        a=a+1


get_position_and_color()

0 个答案:

没有答案