PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。 ImageOps模塊包含許多“現成的”圖像處理操作。該模塊有些實驗性,大多數操作員隻能處理L和RGB圖像。
ImageOps.flip()
垂直翻轉圖像(從上到下)。
用法: PIL.ImageOps.flip(image)
參數:
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()
輸出:
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python Decimal max()用法及代碼示例
- Python PIL ImageOps.fit()用法及代碼示例
- Python os.rmdir()用法及代碼示例
- Python sympy.det()用法及代碼示例
- Python Decimal min()用法及代碼示例
- Python os.readlink()用法及代碼示例
- Python os.writev()用法及代碼示例
- Python os.readv()用法及代碼示例
- Python PIL RankFilter()用法及代碼示例
- Python os.rename()用法及代碼示例
- Python os.sendfile()用法及代碼示例
注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | ImageOps.flip() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。