可能重复:
How to merge a transparant png image with another image using PIL
我有几个PNG文件:
http://dl.dropbox.com/u/6599273/testing/image1.png
http://dl.dropbox.com/u/6599273/testing/image2.png
如您所见,这些图像具有透明部分。当你把一个放在彼此顶部时,它们将形成一个漂亮的图像。这里,合成图像:
http://dl.dropbox.com/u/6599273/testing/image_composed.png
我使用paint.net以非常简单的方式编写图像(拖放)。但我需要使用Python以编程方式进行。并推广到数千个图像(所有相同的尺寸:256x256像素)
我怎么能这样做?我正在试验PIL。有可能吗?
非常感谢提前和最好的问候
答案 0 :(得分:2)
How to merge a transparant png image with another image using PIL已经回答了这个问题。使用PIL图像的paste
方法