在Pillow中旋轉(zhuǎn)圖像可以使用rotate()
方法。
示例代碼:
from PIL import Image
# 打開圖像文件
image = Image.open('example.jpg')
# 旋轉(zhuǎn)圖像,順時(shí)針旋轉(zhuǎn)90度
rotated_image = image.rotate(90)
# 保存旋轉(zhuǎn)后的圖像
rotated_image.save('rotated_example.jpg')
# 顯示旋轉(zhuǎn)后的圖像
rotated_image.show()
在上面的示例中,我們首先打開一個(gè)圖像文件,然后使用rotate()
方法來旋轉(zhuǎn)圖像,可以指定旋轉(zhuǎn)的角度。最后保存旋轉(zhuǎn)后的圖像并顯示出來。