Python PIL | ImageOps.flip() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 ImageOps 模块包含许多“现成的”图像处理操作。这个模块有点实验性,大多数运算符只处理 L 和 RGB 图像。
ImageOps.flip()
垂直翻转图像(从上到下)。
Syntax: PIL.ImageOps.flip(image)
Parameters:
image – The image to flip. The image will be flip vertically.
Returns: An image.
使用的图像:
# Importing Image and ImageOps module from PIL package
from PIL import Image, ImageOps
# creating a image1 object
im1 = Image.open(r"C:\Users\System-Pc\Desktop\a.JPG")
# applying flip method
im2 = ImageOps.flip(im1)
im2.show()
输出: