如何使用 Python 枕头 Transpose.FLIP_TOP_BOTTOM?

How to use Python Pillow's Transpose.FLIP_TOP_BOTTOM?

我正在使用 Pillow 9.1.0 来翻转图像。

from PIL import Image

img = Image.open('example.png')
flipped = img.transpose(Image.FLIP_TOP_BOTTOM)

最近出现警告:

DeprecationWarning: FLIP_TOP_BOTTOM is deprecated and will be removed in Pillow 10 (2023-07-01). Use Transpose.FLIP_TOP_BOTTOM instead.
  flipped = img.transpose(Image.FLIP_TOP_BOTTOM)

我尝试从 PIL 导入 Transpose,但没有成功。

from PIL import Image, Transpose
Traceback (most recent call last):
  File "example.py", line 1, in <module>
    from PIL import Image, Transpose
ImportError: cannot import name 'Transpose' from 'PIL' (.../site-packages/PIL/__init__.py)

如何正确导入和使用Transpose.FLIP_TOP_BOTTOM

都写在deprecation document里了。您应该使用 Image.Transpose.FLIP_TOP_BOTTOM.

而不是 Image.FLIP_TOP_BOTTOM