Easy image rendering?

skip at pobox.com skip at pobox.com
Wed Aug 9 21:05:13 EDT 2006


    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



More information about the Python-list mailing list