2009/3/4 Jeff Hull <jsh2134 at 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>