jay> Can someone tell me what's the absolute easiest way of putting an
jay> image on to the screen in Python without just opening it up in an
jay> application? What's the simplest way to just put something up on
jay> the screen?
Maybe something like this:
import PIL.Image
img = PIL.Image.open(open("someimage.png", "rb"))
img.show()
Skip
--
http://mail.python.org/mailman/listinfo/python-list
