Python PIL | Image.merge() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.merge()
将一组单波段图像合并成一个新的多波段图像。
Syntax: PIL.Image.merge(mode, bands)
Parameters:
mode – The mode to use for the output image. See: Modes.
bands – A sequence containing one single-band image for each band in the output image. All bands must have the same size.
Returns: An Image object.
使用的图像:
# 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()
输出: