我遇到错误
(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()