python对图片进行旋转操作

Python提供了许多库来对图片进行操作,其中最常用的可能是PIL(Python Imaging Library,又名Pillow)。Pillow库允许你进行诸如读取、修改和保存图像等操作。

以下是一个简单的例子,展示了如何使用Pillow库来打开一张图片,对其进行一些简单的操作,然后保存结果:

from PIL import Image

# 打开图片
img = Image.open('input.jpg')

# 对图片进行一些操作,例如旋转
img_rotated = img.rotate(45)  # 旋转45度

你可能感兴趣的:(python入门,python,javascript,开发语言)