使用 Pillow 库旋转图像


在该程序中,我们将使用 Pillow 库旋转图像。Image 类中的 rotate() 函数接受旋转角度。

原图

算法

Step1: Import Image class from Pillow.
Step 2: Open the image.
Step 3: Rotate the image.
Step 4: Display the output.

示例代码

from PIL import Image

im = Image.open('testimage.jpg')
im.rotate(45).show()

输出

更新于: 2021 年 3 月 17 日

750 次浏览量

开启你的 职业生涯

完成课程获取认证

入门
广告