📜  Python PIL | getbands() 方法

📅  最后修改于: 2022-05-13 01:55:20.478000             🧑  作者: Mango

Python PIL | getbands() 方法

PIL 是Python图像库,它为Python解释器提供图像编辑功能
能力。 PIL.Image.getbands()方法返回一个元组,其中包含图像中每个波段的名称。例如,RGB 图像上的 getbands 返回(“R”、“G”、“B”)。
Syntax: PIL.Image.getbands()
Parameters: no arguments
Returns: 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', )

上面使用的图像是: