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

Fredrik Lundh fredrik at pythonware.com
Fri Jan 5 13:27:37 CET 2007


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> 





More information about the Image-SIG mailing list