PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image
模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。
Image.merge()
将一组单波段图像合并为一个新的多波段图像。
用法: PIL.Image.merge(mode, bands)
参数:
mode–用于输出图像的模式。请参阅:模式。
bands–在输出图像的每个波段中包含一个single-band图像的序列。所有频段必须具有相同的大小。
返回值:Image对象。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
image.load()
r, g, b, a = image.split()
# merge funstion used
im1 = Image.merge( 'RGB', (r, g, b))
im1.show()
输出:
另一个示例:这里使用了另一个图像。
使用的图片:
# importing Image class from PIL package
from PIL import Image
# creating a object
image = Image.open(r"C:\Users\System-Pc\Desktop\python.png")
image.load()
r, g, b, a = image.split()[1]
# merge funstion used
im1 = Image.merge('RGB', (r, g, b))
im1.show()
输出:
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python hasattr()用法及代码示例
- Python PIL putdata()用法及代码示例
- Python PIL getcolors()用法及代码示例
- Python PIL tobytes()用法及代码示例
- Python PIL getpalette()用法及代码示例
- Python os.get_blocking()用法及代码示例
- Python Tensorflow cos()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.nT()用法及代码示例
- Python PIL putalpha()用法及代码示例
注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.merge() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。