AttributeError: type object 'Image' has no attribute 'fromarray'
时间: 2023-09-16 19:14:02 浏览: 197
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误通常是因为你的代码中使用了PIL中的Image类,但是你的代码中没有正确导入相关的模块。你需要在代码顶部添加以下导入语句:
```
from PIL import Image
```
如果你已经添加了这个导入语句,那么可能是因为你的Pillow库版本较低,没有包括该函数。你可以尝试更新Pillow库或者使用以下代码替代:
```
img = Image.fromarray(array.astype('uint8')).convert('RGB')
```
其中,'uint8' 表示将数据类型转换为8位无符号整数,'RGB' 表示将图像转换为RGB格式。
阅读全文