當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。