Python Pillow 翻转和旋转图像
在使用Python图像处理库处理图像时,有时候需要翻转现有的图像以获得更多洞察力,改善其可见性或满足你的需求。
Pillow库的Image模块允许我们非常容易地翻转图像。我们将使用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()
输出
原始图像
翻转图像
示例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()
输出
原始图片
图片翻转
示例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()
输出
原始图像
旋转图像