gpt4 book ai didi

python - 通过python旋转照片

转载 作者:太空宇宙 更新时间:2023-11-03 17:15:25 24 4
gpt4 key购买 nike

我的磁盘上有一张照片,我想将其顺时针旋转 90 度。我正在尝试使用 PIllow,如下所述: http://pillow.readthedocs.org/en/3.0.x/handbook/tutorial.html#geometrical-transforms

pill_img = Image.open(abs_img_src)
pill_img.rotate(90)

但是什么都没有改变。我错过了什么吗?

最佳答案

看起来它返回了一个新图像,所以你需要类似的东西

from PIL import Image

abs_img_src = 'test.png'

pill_img = Image.open(abs_img_src)
pill.show()

rotated_img = pill_img.rotate(90)
rotated_img.show()

如果我们让“test.png”成为 Python Logo

Python Logo

pill.show()

将输出

Python Logo using pillow

rotated_img = pill_img.rotate(90)
rotated_img.show()

将导致

Python Logo rotated with pillow

为了仔细检查,现在让我们在 im.rotate(90) 之后调用 im.show():

enter code here

果然,我们得到了预期的结果——即 im.rotate 不会改变 im,而是返回一个新的旋转 Image.

关于python - 通过python旋转照片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33711511/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com