python实现打开,旋转图片
时间: 2023-10-28 14:32:53 浏览: 73
python 实现旋转图像
可以使用Python的Pillow库来实现打开、旋转图片的功能。以下是一个示例代码:
```python
from PIL import Image
# 打开图片
image = Image.open('example.jpg')
# 旋转图片
rotated_image = image.rotate(45)
# 显示旋转后的图片
rotated_image.show()
```
在这个示例中,我们首先使用`Image.open()`方法打开了一个名为`example.jpg`的图片。然后,我们使用`rotate()`方法将图片旋转了45度,并将结果保存在`rotated_image`变量中。最后,我们使用`show()`方法来显示旋转后的图片。
你可以根据需要调整旋转的角度,并替换打开的图片文件名。
阅读全文