尝试显示图像时出错:pyscreeze.ImageNotFoundException

时间:2019-01-27 06:21:57

标签: python-3.x pyautogui

我有一个名为1.jpg的以下图像,并尝试显示它:

enter image description here

但是我收到以下错误消息:

  

pyscreeze.ImageNotFoundException:无法找到图像
  图片不在桌面中。

到目前为止,这是我的代码:

import time
import pyautogui
print(pyautogui.locateOnScreen(r'C:\Users\user\Desktop\1.jpg', grayscale=True))

我该怎么做才能使这项工作成功?

1 个答案:

答案 0 :(得分:0)

尝试一下:

import time
import pyautogui

image = pyautogui.locateCenterOnScreen('r'C:\Users\user\Desktop\1.jpg')
print(image)