Python Pillow - 翻转和旋转图像

在使用 python 图像处理库处理图像时,在某些情况下,您需要翻转现有图像以从中获得更多见解,以提高其可见性或满足您的要求。

pillow library 的图像模块可以让我们很容易地翻转图像。 我们将使用 Image 模块中的 transpose(方法)函数来翻转图像。 "transpose()"支持的一些最常用的方法是 −

  • Image.FLIP_LEFT_RIGHT − 用于水平翻转图像

  • Image.FLIP_TOP_BOTTOM − 用于垂直翻转图像

  • Image.ROTATE_90 − 用于指定角度旋转图像

示例1:水平翻转图像

以下 Python 示例读取图像,将其水平翻转,并使用标准 PNG 显示实用程序显示原始图像和翻转后的图像 −

# import required image module
from PIL import Image

# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")

# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)

# Show the original image
imageObject.show()

# Show the horizontal flipped image
hori_flippedImage.show()

输出

原图

原始图像6

翻转图像

翻转图像

示例 2:垂直翻转图像

以下 Python 示例读取图像,将其垂直翻转,并使用标准 PNG 显示实用程序显示原始图像和翻转后的图像 −

# import required image module
from PIL import Image

# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")

# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)

# Show the original image
imageObject.show()

# Show vertically flipped image
Vert_flippedImage = imageObject.transpose(Image.FLIP_TOP_BOTTOM)
Vert_flippedImage.show()

输出

原图

原始图像6

翻转图像

翻转图像2

示例3:将图像旋转到特定角度

以下 Python 示例读取图像,旋转到指定角度,并使用标准 PNG 显示实用程序显示原始图像和旋转图像 −

# import required image module
from PIL import Image

# Open an already existing image
imageObject = Image.open("images/spiderman.jpg")

# Do a flip of left and right
hori_flippedImage = imageObject.transpose(Image.FLIP_LEFT_RIGHT)

# Show the original image
imageObject.show()

#show 90 degree flipped image
degree_flippedImage = imageObject.transpose(Image.ROTATE_90)
degree_flippedImage.show()

输出

原图

原始图像6

旋转图像

旋转图像2