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


Python PIL Image.alpha_composite()用法及代码示例


PIL是Python Imaging Library,它为python解释器提供了图像编辑函数。的Image模块提供了一个具有相同名称的类,用于表示PIL图像。该模块还提供了许多出厂函数,包括从文件加载图像和创建新图像的函数。

Image.alpha_composite()相对于im1的alpha复合im2。

用法:  PIL.Image.alpha_composite(im1, im2)

参数:
img1-第一张图片。
img2-第二张图片。必须具有与第一个图像相同的模式和大小。

返回:Image对象。

使用的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()

输出:



相关用法


注:本文由纯净天空筛选整理自Sunitamamgai大神的英文原创作品 Python PIL | Image.alpha_composite() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。