PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image
模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。
Image.sHOW()
顯示此圖像。此方法主要用於調試目的。
在Unix平台上,此方法將映像保存到臨時PPM文件,然後調用xv實用程序。在Windows上,它將圖像保存到一個臨時的BMP文件中,並使用標準的BMP顯示實用程序來顯示它(通常是Paint)。
用法: Image.show(title=None, command=None)
參數:
title-可能的話,用於圖像窗口的可選標題。
command-用於顯示圖像的命令
返回類型=分配的路徑圖像將打開。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
im.show()
輸出:
另一個示例:使用show()using .jpg擴展名打開圖像。
使用的圖片:
# importing Image class from PIL package
from PIL import Image
# creating a object
im = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
im.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 | Image.show() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。