Image.show doesn't show image
| Newsgroups | gmane.comp.python.image |
|---|---|
| Message-ID | <2080055022.4909661262267635579.JavaMail.root@sz0120a.emeryville.ca.mail.comcast.net> |
I'm running under Microsoft Vista in a pc environment. The atached PILTest.py yields a Windows Photo Galery window with no items selected. How do I view the image? george _______________________________________________ Image-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/image-sig
PILTest.py
(text/x-python, 157 B)
import Image,ImageWin
import os
files = os.listdir('.')
fname = files[-1]
print fname
im = Image.open(fname)
print im.format, im.size, im.mode
im.show()