我有一个名为1.jpg
的以下图像,并尝试显示它:
但是我收到以下错误消息:
pyscreeze.ImageNotFoundException:无法找到图像
图片不在桌面中。
到目前为止,这是我的代码:
import time
import pyautogui
print(pyautogui.locateOnScreen(r'C:\Users\user\Desktop\1.jpg', grayscale=True))
我该怎么做才能使这项工作成功?
答案 0 :(得分:0)
尝试一下:
import time
import pyautogui
image = pyautogui.locateCenterOnScreen('r'C:\Users\user\Desktop\1.jpg')
print(image)