Hey guys! I'm working on a program in python with Tkinter that allows you to enter in a bunch of number and such, and generate an image. So, I have PIL creating a blank PNG image and saving it, it all works...
Now I want to add stuff to the image. Is it possible to use Image.new("RGB",(256,256)) and then add content to it?
Also how do I add, say, four 128 images inside the 256 image (tiled)
Thanks!!