如何将具有透明度的PNG图像粘贴到PIL中没有白色像素的另一个图像?

时间:2016-07-28 05:38:26

标签: python python-imaging-library

我有两个图像,一个背景和一个带透明像素的PNG图像。我试图使用Python-PIL将PNG粘贴到背景上但是当我粘贴这两个图像时,我在PNG图像周围有透明像素的白色像素。

我的代码:

import os
from PIL import Image, ImageDraw, ImageFont

filename='pikachu.png'
ironman = Image.open(filename, 'r')
filename1='bg.png'
bg = Image.open(filename1, 'r')
text_img = Image.new('RGBA', (600,320), (0, 0, 0, 0))
text_img.paste(bg, (0,0))
text_img.paste(ironman, (0,0))
text_img.save("ball.png", format="png")

我的图片:
enter image description here enter image description here

我的输出图片
enter image description here

如何使用透明像素而不是白色?

1 个答案:

答案 0 :(得分:20)

您需要在粘贴功能中将图像指定为掩码:

import os
from PIL import Image

filename = 'pikachu.png'
ironman = Image.open(filename, 'r')
filename1 = 'bg.png'
bg = Image.open(filename1, 'r')
text_img = Image.new('RGBA', (600,320), (0, 0, 0, 0))
text_img.paste(bg, (0,0))
text_img.paste(ironman, (0,0), mask=ironman)
text_img.save("ball.png", format="png")

给你:

paste with transparency

要将背景图像和透明图像置于新text_img的中心,您需要根据图像尺寸计算正确的偏移量:

text_img.paste(bg, ((text_img.width - bg.width) // 2, (text_img.height - bg.height) // 2))
text_img.paste(ironman, ((text_img.width - ironman.width) // 2, (text_img.height - ironman.height) // 2), mask=ironman)