+ 1
How do i make pyautogui detect pixel at certain coordinate
EXAMPLE: IF BLACKPIXELDETECT = TRUE
2 Respostas
+ 2
Pixel Matching.
To obtain the RGB color of a pixel in a screenshot, use the Image object's getpixel() method:
Or as a single function, call the pixel() PyAutoGUI function, which is a wrapper for the previous calls.
0
thanks Tarun Pandey