编程语言
首页 > 编程语言> > python-粘贴PIL的图像会产生伪像

python-粘贴PIL的图像会产生伪像

作者:互联网

我有一堆图像,需要在其上面放置文字叠加层.我使用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")

但是,我没有在顶部显示漂亮的黑色文本,而是得到了:

Broken Image

overlay.png在Gimp中看起来像这样:

Overlay Gimp

因此,我希望看到一些漂亮的黑色文字,而不是这种多姿多彩的混乱.

有任何想法吗?我缺少一些PIL选项吗?

解决方法:

正如VR指出的那样,使用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")

结果:

Result

标签:transparency,python-imaging-library,png,python
来源: https://codeday.me/bug/20191027/1945079.html