2009/3/4 Jeff Hull <jsh2...@gmail.com>:

> I am having the same problem. I can not save this image after i edit its
> data.
>
> im = myimage.load()
>
> ...do stuff to im...
>
> im.save('jeff', "JPEG")

make that

   myimage.save(...)

the object that's returned from load is a reference to the contents of
the image, not the image itself.

</F>
_______________________________________________
Image-SIG maillist  -  Image-SIG@python.org
http://mail.python.org/mailman/listinfo/image-sig

Reply via email to