On Wed, 09 Aug 2006 16:27:50 -0700, [EMAIL PROTECTED] wrote: > Can someone tell me what's the absolute easiest way of putting an image > on to the screen in Python without just opening it up in an > application? What's the simplest way to just put something up on the > screen?
If you are using PIL you could use im.show(); but all that does is saving the image data to a file and opening that file in an external application (xv on UNIX). At least you don't have to do it yourself. -- http://mail.python.org/mailman/listinfo/python-list