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")
_
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