当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。