是的,Python的PIL库(Pillow库的升级版)提供了图片旋转功能。你可以使用rotate()方法来旋转图片。示例如下:
rotate()
from PIL import Image # 打开图片文件 image = Image.open('example.jpg') # 旋转图片90度 rotated_image = image.rotate(90) # 保存旋转后的图片 rotated_image.save('rotated_example.jpg')