首页 > 解决方案 > 如何在 Python Pillow 中合并图像和 Gif

问题描述

我得到了一个部分透明的图像和一个 GIF。

我想用 PIL 将图像粘贴到 GIF 上,我得到一个动画 GIF 作为背景,前景是静态图像。

标签: python-3.xpython-imaging-library

解决方案


您可能需要针对自己的特定图像进行调整,但这是一个起点 -

from PIL import Image, ImageSequence
transparent_foreground = Image.open(...)
animated_gif = Image.open(...)

frames = []
for frame in ImageSequence.Iterator(animated_gif):
    frame = frame.copy()
    frame.paste(transparent_foreground, mask=transparent_foreground)
    frames.append(frame)
frames[0].save('output.gif', save_all=True, append_images=frames[1:])

推荐阅读