python保存图片到指定路径
时间: 2024-02-06 19:43:56 浏览: 87
python将处理好的图像保存到指定目录下的方法
要将图像保存到指定路径,可以使用Python的Pillow库。下面是一个示例代码,它将图像保存到指定的文件夹中:
```python
from PIL import Image
# 打开图像
image = Image.open("path/to/image.jpg")
# 保存图像到指定路径
save_path = "path/to/save/image.jpg"
image.save(save_path)
```
请注意,如果指定的路径不存在,Pillow库不会自动创建文件夹。因此,您需要先手动创建文件夹,然后再保存图像。
阅读全文