温馨提示×

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

小樊
104
2024-06-13 21:56:31
栏目: 编程语言
Python开发者专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

是的,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')

亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读:python中的image函数如何使用

0