在python中使用PIL加载图像

时间:2018-10-17 17:44:39

标签: python python-imaging-library

我知道这个问题已经被问过很多次了,但是我似乎还没有从其他任何帖子中得到答案。我只是想使用PIL从桌面加载图像:

from PIL import Image
pic = Image.open("/Users/23athreyad/Desktop/turkishflag.jpg")
pic.show()

而且我似乎总是会收到错误消息:

FileNotFoundError: [Errno 2] No such file or directory: '/Users/23athreyad/Desktop/turkishflag.jpg'
(base)

我已经指定了文件的完整路径,但不知道为什么它仍然找不到图像。

任何帮助表示赞赏...

1 个答案:

答案 0 :(得分:1)

这意味着您为要打开的文件提供了错误的绝对路径。在那个位置找不到它。您使用的代码对official documentation是正确和准确的。