Re: [Image-SIG] Image.load() issues.

2007-01-05 Thread Fredrik Lundh
Colin Barnette wrote: > I'm having some really odd trouble with PIL. As shown on in the Handbook I > have: what handbook is this? > import Image > > print Image.VERSION > img = Image.load("sushi.jpg") if you want to open an image file, use "open": img = Image.open("sushi.jpg") _

[Image-SIG] Image.load() issues.

2007-01-05 Thread Colin Barnette
I'm having some really odd trouble with PIL. As shown on in the Handbook I have: import Image print Image.VERSION img = Image.load("sushi.jpg") And the output I get is this: 1.1.6 Traceback (most recent call last): File "pichtml.py", line 5, in ? img = Image.load("sushi.jpg") At