PIL是Python Imaging Imaging Library,它為python解釋器提供圖像編輯函數
能力。PIL.Image.getbands()方法返回一個包含圖像中每個波段名稱的元組。例如,返回RGB圖像上的getbands(“R”,“G”,“B”)。
能力。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”,)
上麵使用的圖像是:
相關用法
- Python PIL getbands() and getextrema()用法及代碼示例
- Python set()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python sympy.ff()用法及代碼示例
- Python sympy.div()用法及代碼示例
- Python os.ftruncate()用法及代碼示例
- Python PIL eval()用法及代碼示例
- Python sympy.rf()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.scandir()用法及代碼示例
- Python sympy.S()用法及代碼示例
- Python PIL putpixel()用法及代碼示例
- Python Decimal min()用法及代碼示例
注:本文由純淨天空篩選整理自ravikishor大神的英文原創作品 Python PIL | getbands() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。