OK, in reference to my last thread, I finally got PIL installed and set up. I can even successfully import it (from PIL import Image). All that remains to be done is for me to successfully get an image into my GUIs, and I'll be good to go.
Can someone link me to a helpful thread or website?
ETA: I am having trouble figuring this out. I have the following as a "test" code, before I apply PIL to my main code:
import PIL
from PIL import Image
from PIL import ImageDraw
im = Image.open("1.gif")
im.show()
print 'done.'
This is EXACTLY what a sample program has, with the lone exception of the file. And yet my program pops up the Microsoft Windows Viewer but shows no picture. Why?