pyautogui.locateOnScreen () dla wielu obrazów?

Nov 27 2020

Jak byś to zrobił pyautogui.locateOnScreen()dla wielu obrazów i kilku obrazów?

Odpowiedzi

1 AndrewStone Nov 28 2020 at 19:00

Wypróbuj to:

import os
import pyautogui as py


image_list = []

# Get list of all files in current directory
directory = os.listdir()

# Find files that end with .png or .jpg and add to image_list
for file in directory:
    if file.endswith('.png') or file.endswith('.jpg'):
        image_list.append(file)

# Loop through list to find all the images
for image in image_list:
    print(image)
    print(py.locateOnScreen(image))

To pytanie jest podobny do innego jednego , napisałem tę samą odpowiedź w obu miejscach.