PyCairo, PIL and StringIO

J

Jair Trejo

I'm doing some image processing in PIL, and I want to
display the results in a GTK window using PyCairo, so
I create a Cairo image surface from the PIL Image like
this:

mfile = StringIO.StringIO()
final.save(mfile, format="PNG")
ima =
cairo.ImageSurface.create_from_png(mfile)
mfile.close()
return ima

Where final is a PIL image. The problem is, I get a
IOError: error while reading from Input Stream.

¿Any idea of why is this happening? I tried saving to
a temporary file, i.e., replace the above code with:

final.save('final.png')
ima =
cairo.ImageSurface.create_from_png('final.png')

Instead of a StringIO object, and it works just fine.


____________________________________________________________________________________
¡Capacidad ilimitada de almacenamiento en tu correo!
No te preocupes más por el espacio de tu cuenta con Correo Yahoo!:
http://correo.yahoo.com.mx/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top