AttributeError: module 'PIL.Image' has no attribute 'imsave'
时间: 2023-11-30 10:43:23 浏览: 134
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于Pillow版本不兼容导致的。在较新的Pillow版本中,`imsave`已被替换为`save`。因此,您可以尝试使用以下代码来保存图像:
```python
from PIL import Image
img = Image.open('image.jpg')
img.save('new_image.jpg')
```
如果您仍然想使用`imsave`,则需要安装较旧的Pillow版本。您可以使用以下命令安装特定版本的Pillow:
```shell
pip install Pillow==版本号
```
请将“版本号”替换为您想要安装的Pillow版本号。
阅读全文