我有两个图像,一个背景和一个带透明像素的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")
如何使用透明像素而不是白色?
答案 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")
给你:
要将背景图像和透明图像置于新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)