5

Is there a built in function that allows an image to be added over another image in python? Thanks a lot

joaquin
  • 82,968
  • 29
  • 138
  • 152
Bigdinrock
  • 525
  • 2
  • 10
  • 14

2 Answers2

6

Use the blend function from the Image module: http://effbot.org/imagingbook/image.htm

Jonathan Root
  • 535
  • 2
  • 14
  • 31
YXD
  • 31,741
  • 15
  • 75
  • 115
3

Image.paste() from PIL will do that.

Jonathan Root
  • 535
  • 2
  • 14
  • 31
nmichaels
  • 49,466
  • 12
  • 107
  • 135