[Image-SIG] Image to Matrix to Image.

Fredrik Lundh fredrik at pythonware.com
Thu Mar 5 19:27:44 CET 2009


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>


More information about the Image-SIG mailing list