PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image
模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
PIL.Image.open()
打開並標識給定的圖像文件。
這是一個懶惰的操作;此函數可識別文件,但文件保持打開狀態,直到嘗試處理數據(或調用load()方法),才會從文件中讀取實際圖像數據。請參閱new()。
用法: PIL.Image.open(fp, mode=’r’)
參數:
fp-文件名(字符串),pathlib.Path對象或文件對象。文件對象必須實現read(),seek()和tell()方法,並以二進製模式打開。
mode-模式。如果給定,則此參數必須為“r”。
返回類型:圖像對象。
raise :IOError-如果找不到文件,或者無法打開和標識圖像。
使用的圖片:
# Imports PIL module
from PIL import Image
# open method used to open different extension image file
im = Image.open(r"C:\Users\System-Pc\Desktop\ybear.jpg")
# This method will show image in any image viewer
im.show()
輸出:.JPG擴展名圖像打開。
另一個示例:在這裏,我們使用了.PNG擴展文件。
使用的圖片:
# Imports PIL module
from PIL import Image
# open method used to open different extension image file
im = Image.open(r"C:\Users\System-Pc\Desktop\lion.png")
# This method will show image in any image viewer
im.show()
輸出:.PNG擴展名圖像打開。
相關用法
- 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 | Image.open() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。