Python PIL-NEAREST“对象没有属性”

时间:2019-12-04 14:58:02

标签: python-3.x python-imaging-library

今天我安装了PIL,但是我有几个问题。

我使用了这段代码

from PIL import Image


image = Image.open('456.png')
image.rotate(10, image.NEAREST,True).save("img_rotate_30_expand.png")

发现了这个错误

image.rotate(10, image.NEAREST,True).save("img_rotate_30_expand.png")
AttributeError: 'PngImageFile' object has no attribute 'NEAREST'

还有

为什么这个PIL没有建议。对于初学者来说真的很难!(下图)

enter image description here

1 个答案:

答案 0 :(得分:1)

您应该写Image.NEAREST(大写的“ I”)。