pngimagefile object has no attribute 'shape'
时间: 2024-05-13 15:12:07 浏览: 168
Python 从attribute到property详解
在Python中,常用的处理图像的库是Pillow,其中Pillow中的PNGImageFile类表示PNG格式的图像文件。这个错误提示"PNGImageFile object has no attribute 'shape'"通常是因为尝试使用图像对象的"shape"属性,而PNGImageFile对象并没有该属性。"shape"属性通常用于numpy数组,表示数组的维度和大小。
如果你想获取PNGImageFile对象的尺寸信息,可以使用Pillow提供的size属性。例如,如果你有一个名为img的PNGImageFile对象,可以通过img.size来获取它的尺寸信息。
阅读全文