im = Image.new('P', (100,100), 'black')
All this does is return an error saying an integer is needed. How do I create I gif image? OR am I misunderstanding the 'P'. I thought 'P' was to be used for gif images. I'm wanting to be able to fill the image, pixel by pixel with preset colors(0-255) and not have the colors change when I go to save the file. I'm pretty sure from the values I would have to use under RGB that those values would get changed when going back and saving as a gif like in How to CREATE a transparent gif (or png) with PIL (python-imaging). In my program the values CAN'T change.