枕头中的图像旋转

时间:2015-06-17 09:52:56

标签: python pillow

我有一个图像,我想将它移位30度。是否可以使用像

这样的东西
 spinPicture003 = Picture003.transpose(Image.Rotate_30)

3 个答案:

答案 0 :(得分:5)

围绕其中心逆时针旋转30度:

spinPicture003 = Picture003.rotate(30)

答案 1 :(得分:2)

尝试使用rotate()而不是transpose()

答案 2 :(得分:2)

如果您想保持图片大小,可以使用

spinPicture003 = Picture003.rotate(30)

但如果您想更换宽度和高度,请使用

spinPicture003 = Picture003.rotate(30, expand=1)