Python PIL ImageOps.flip()方法

Python PIL ImageOps.flip()方法

PIL是Python成像库,它为Python解释器提供了图像编辑功能。ImageOps模块包含一些 “现成的 “图像处理操作。这个模块在某种程度上是实验性的,大多数操作只对L和RGB图像起作用。

ImageOps.flip()将图像垂直翻转(从上到下)。

语法: PIL.ImageOps.flip(image)

参数 :
image – 要翻转的图像。该图像将被垂直翻转。

返回 :一个图像。

使用的图片:
Python PIL ImageOps.flip()方法

# 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()

输出:

Python PIL ImageOps.flip()方法

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程