I have two images. The first is called white_1.png
which is just a white background 600px, the second image is called img2222.png
which is just black letter "A".
I would like to paste the letter A into white_1.png. however, in the ouput I only get a black background nothing else. both files are 600px. This is the code I have so far.
from PIL import Image
im1 = Image.open('white_1.png')
im2 = Image.open('img2222.png')
im1.paste(im2)
im1.save('dasdsdsad.jpg')