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


Python PIL getbands()用法及代碼示例


PIL是Python Imaging Imaging Library,它為python解釋器提供圖像編輯函數
能力。PIL.Image.getbands()方法返回一個包含圖像中每個波段名稱的元組。例如,返回RGB圖像上的getbands(“R”,“G”,“B”)。
用法: PIL.Image.getbands()
參數: no arguments
返回: A tuple containing band names.
# Importing Image module from PIL package  
from PIL import Image 
  
# creating a image object 
im1 = Image.open(r"C:\Users\sadow984\Desktop\i3.PNG") 
  
# get bands of image 
im2 = im1.getbands() 
  
# print band names. 
print(im2)

輸出:
(“ R”,“ G”,“ B”,“ A”)

上麵使用的圖像是:


# Importing Image module from PIL package  
from PIL import Image 
  
# creating a image object 
im1 = Image.open(r"C:\Users\sadow984\Desktop\r1.PNG") 
  
# get bands of image 
im2 = im1.getbands() 
  
# print band names. 
print(im2)

輸出:
(“ P”,)

上麵使用的圖像是:



相關用法


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