當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PIL Image.convert()用法及代碼示例


PIL是Python Imaging Library,它為python解釋器提供了圖像編輯函數。的Image模塊提供了一個具有相同名稱的類,用於表示PIL圖像。該模塊還提供了許多出廠函數,包括從文件加載圖像和創建新圖像的函數。

Image.convert()返回此圖像的轉換後的副本。對於“P”模式,此方法可通過調色板轉換像素。如果省略模式,則選擇一種模式,以便無需調色板即可表示圖像和調色板中的所有信息。

用法:  Image.convert(mode=None, matrix=None, dither=None, palette=0, colors=256)

參數:
mode-請求的模式。請參閱:模式。
matrix-可選的轉換矩陣。如果給定,則該值應為包含浮點值的4或12元組。
dither-抖動方法,從模式“RGB”轉換為“P”或從“RGB”或“L”轉換為“1”時使用。可用的方法為NONE或FLOYDSTEINBERG(默認)。
palette-從模式“RGB”轉換為“P”時使用的調色板。可用的調色板是WEB或ADAPTIVE。
colors-用於“自適應”調色板的顏色數。默認值為256。

返回:Image對象。

使用的圖片:

   
  
# importing image class from PIL package 
from PIL import Image 
  
# creating image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\scene3.jpg") 
  
# using convert method for img1 
img1 = img.convert("L") 
img1.show() 
  
# using convert method for img2 
 img2 = img.convert("1") 
img2.show()

輸出1:

輸出2:

另一個示例:拍攝另一個圖像。

使用的圖片:

   
  
# importing image class from PIL package 
from PIL import Image 
  
# creating image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\scene4.jpg") 
  
# using convert method for img1 
img1 = img.convert("L") 
img1.show() 
  
# using convert method for img2 
 img2 = img.convert("1") 
img2.show()

輸出1:

輸出2:



相關用法


注:本文由純淨天空篩選整理自Sunitamamgai大神的英文原創作品 Python PIL | Image.convert() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。