如何叠加多个图像?

时间:2018-01-20 01:28:45

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

我想使用Python覆盖多个大小相同的图像。目前,我正在使用图像模块,可以一次覆盖两个图像:

from PIL import Image

img1 = Image.open'/path/to/image1.png'
img2 = Image.open'/path/to/image2.png'  
Image.alpha_composite(img1, img2).save('/new/image.png')

但如果我想把很多图像放在一起......这会变得相当乏味吗?我想知道是否有更好的方法来解决这个问题。

0 个答案:

没有答案