Feb-01-2019, 09:55 AM
Using PIL I want to paste multiple images (currently the same, later all different) on to a single image.
I have tried this:
Thanks,
Dream
I have tried this:
import PIL
img = Image.new('RGB', (1000, 1000), color = (0,0,0))
img.save('out.png')
for i in range(0, 4):
out = Image.open('out.png')
out.paste(Image.open('the image i want to use'), (0, i))
out.save('out.png')
but I only see one image, not multiple, how do I fix this?Thanks,
Dream
