I have two images, both with alpha channels. I want to put one image over the other, resulting in a new image with an alpha channel, just as would occur if they were render
Pillow 2.0 now contains an alpha_composite function that does this.
alpha_composite
img3 = Image.alpha_composite(img1, img2)