On Tue, Sep 23, 2008 at 5:38 PM, jeremiah
<[EMAIL PROTECTED]> wrote:
> I'm trying to do simple image manipulation but am getting an error. any
> ideas what i am doing wrong here?
>
> file=open("./"+name,"w")
> pic=Image.open(file)

You're opening the file for "w"riting, then asking PIL to read it.
That's not going to work.  In fact, there's no reason for you to open
the file yourself.  Just pass the filename, like this:

pic=Image.open(name)

-- 
Jerry
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to