python

python image库提供图片旋转功能吗

小樊
86
2024-06-13 21:56:31
栏目: 编程语言

是的,Python的PIL库(Pillow库的升级版)提供了图片旋转功能。你可以使用rotate()方法来旋转图片。示例如下:

from PIL import Image

# 打开图片文件
image = Image.open('example.jpg')

# 旋转图片90度
rotated_image = image.rotate(90)

# 保存旋转后的图片
rotated_image.save('rotated_example.jpg')

0
看了该问题的人还看了