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")
</F>