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