Pillow

时间:2017-04-15 09:17:47

标签: windows python-3.x pillow

我刚在Windows上用pip3安装了Pillow(PIL fork),我可以导入它,但是找不到Image类:

>>> import PIL
>>> PIL.Image
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: module 'PIL' has no attribute 'Image'

我做错了什么?

1 个答案:

答案 0 :(得分:3)

Pillow's documentation中找到答案:

  

警告

     

Pillow&gt; = 1.0不再支持“导入图片”。请用   “来自PIL导入图像”而不是。

from PIL import Image工作。