图片旋转90°python
时间: 2024-08-12 07:06:02 浏览: 37
Python+OpenCV 实现图片无损旋转90°且无黑边
在Python中,你可以使用PIL(Pillow)库来进行图片的旋转操作。PIL是一个非常流行的图像处理库,可以方便地对图片进行各种变换。以下是使用PIL将图片顺时针旋转90度的基本步骤:
```python
from PIL import Image
def rotate_90_degree(image_path):
with Image.open(image_path) as img:
rotated_img = img.rotate(90)
# 可选步骤:保存旋转后的图片
rotated_img.save("rotated_" + image_path)
# 使用函数
rotate_90_degree("original_image.jpg")
阅读全文