AttributeError: 'PngImageFile' object has no attribute 'shape'
时间: 2023-11-09 16:07:24 浏览: 291
PNG图像.png
这个错误提示是因为你在使用 PIL 库中的 Image 类时,调用了 shape 属性,但是 Image 类并没有 shape 属性。如果你想获取图片的尺寸,可以使用 size 属性。例如:
```python
from PIL import Image
img = Image.open('example.png')
width, height = img.size
print(f'图片宽度为{width},高度为{height}')
```
阅读全文