今天我安装了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没有建议。对于初学者来说真的很难!(下图)
答案 0 :(得分:1)
您应该写Image.NEAREST
(大写的“ I”)。