Python PIL | Image.alpha_composite() 方法
PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image
模块提供了一个同名的类,用于表示 PIL 图像。该模块还提供了许多工厂函数,包括从文件加载图像和创建新图像的函数。
Image.alpha_composite()
上的 Alpha 合成 im2。
Syntax: PIL.Image.alpha_composite(im1, im2)
Parameters:
img1 – The first image.
img2 – The second image. Must have the same mode and size as the first image.
Returns: An Image object.
使用的 Img1:
使用的 Img2:
# importing image class from PIL package
from PIL import Image
# creating image object
img1 = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
# creating image2 object having alpha
img2 = Image.open(r"C:\Users\System-Pc\Desktop\python.png")
img2 = img2.resize(img1.size)
# using alpha_composite
im3 = Image.alpha_composite(img1, img2)
im3.show()
输出: