Problems moving cursor to image using autopy

661 Views Asked by At

I am learning autopy so I hope I can find help here. I am trying to find an image on my screen and move the cursor to it.

I have written the following code:

import autopy
# Take a screenshot of the entire desktop
autopy.bitmap.capture_screen().save('screen.png')

# define a function to search for the image in the screenshot
def find_image_example():
    aid = autopy.bitmap.Bitmap.open('aid.png') # searched image
    screen = autopy.bitmap.Bitmap.open('screen.png') # Desktop screenshot

    pos = screen.find_every_bitmap(aid,0.1) # find the image if any

    if pos:
        print('Found aid at: %s' % str(pos)) # print all found instances
        x = pos[0][0] # x pos
        y = pos[0][1] # y pos
        print(x) # print for debug
        print(y) # print for debug
        autopy.mouse.smooth_move(x,y) # move the cursor to the first image
    else:
        print('no images found!') # print if no images found
# execute the function
find_image_example()

after running the code, I get the following error message:

    Found aid at: [(405.0, 1000.0), (552.0, 1000.0), (699.0, 1000.0)]
405.0
1000.0
  File "C:/Users/Mortada/PycharmProjects/autopy_tut/main.py", line 22, in <module>
    find_image_example()
  File "C:/Users/Mortada/PycharmProjects/autopy_tut/main.py", line 18, in find_image_example
    autopy.mouse.smooth_move(x,y) # move the cursor to the first image
ValueError: Point out of bounds

I am not sure what is going wrong here :-/ I thought I git it right, lol!!

aid.png

captured screen

0

There are 0 best solutions below