我有一堆图像需要在文本覆盖之上。我使用GIMP(带透明度的PNG)创建了叠加层,并尝试将其粘贴到另一个图像上:
from PIL import Image
background = Image.open("hahn_echo_1.png")
foreground = Image.open("overlay_step_3.png")
background.paste(foreground, (0, 0), foreground)
background.save("abc.png")
然而,我没有在顶部显示漂亮的黑色文字,而是得到了这个:
overlay.png在Gimp中看起来像这样:
所以我期待一些漂亮的黑色文字,而不是这个色彩缤纷的混乱。
有什么想法吗?我错过了一些PIL选项?
答案 0 :(得分:4)
正如上面vrs
指出的那样,使用alpha_composite
就像这样的回答:How to merge a transparent png image with another image using PIL
诀窍。确保图像处于正确的模式(RGBA)。
完整的解决方案:
from PIL import Image
background = Image.open("hahn_echo_1.png").convert("RGBA")
foreground = Image.open("overlay_step_3.png").convert("RGBA")
print(background.mode)
print(foreground.mode)
Image.alpha_composite(background, foreground).save("abc.png")
结果: