python图像旋转180°
时间: 2024-07-30 20:01:01 浏览: 46
python 实现旋转图像
在Python中,你可以使用PIL(Python Imaging Library)或者其后续版本Pillow库来进行图片的旋转操作。如果你想将一张图片旋转180度,可以按照以下步骤:
```python
from PIL import Image
def rotate_180(image_path):
# 打开图片
with Image.open(image_path) as img:
# 旋转180度
rotated_img = img.rotate(180)
# 保存旋转后的图片
rotated_img.save("rotated_" + image_path)
# 使用函数并指定图片路径
rotate_180('original_image.jpg')
```
这个例子中,`image_path`是你想要旋转的图片的文件路径,程序会读取图片,旋转180度,然后把结果保存为原图名前加"rotated_"的新文件。
阅读全文