如何使用Python Pillow加载图像?

时间:2015-07-28 01:58:49

标签: python pillow

我以这种方式加载图片:

from PIL import Image
im = Image.open('test.png')

给了我以下错误:

IOError: [Errno 2] No such file or directory: 'test.png'

我已将图片'test.png'保存在桌面上。

那么我应该在哪里保存图像?

1 个答案:

答案 0 :(得分:4)

您需要提供文件所在的目录。因此,如果您放入桌面,它应该是这样的:

Image.open('C:\Users\$(your_user_name)\Desktop\test.png')

或将文件“test.png”移动到脚本所在的文件夹中。