new to PIL, but want to get a quick solution out of it. The following is my first shot which never works:

import cStringIO
import pylab
from PIL import Image
pylab.figure()
pylab.plot([1,2])
pylab.title("test")
buffer = cStringIO.StringIO()
pylab.savefig(buffer, format='png')
im = Image.open(buffer.read())
buffer.close()

the error says,

Traceback (most recent call last):
  File "try.py", line 10, in <module>
    im = Image.open(buffer.read())
  File "/awesomepath/python2.7/site-packages/PIL/Image.py", line 1952, in open
    fp = __builtin__.open(fp, "rb")

any ideas? I don't want the solution to involve extra packages, thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Remember to call buf.seek(0) so Image.open(buf) starts reading from the beginning of the buf:

import matplotlib.pyplot as plt
import io
import Image

plt.figure()
plt.plot([1, 2])
plt.title("test")
buf = io.BytesIO()
plt.savefig(buf, format = 'png')
buf.seek(0)
im = Image.open(buf)
im.show()
buf.close()
link|improve this answer
Awesome! it works like a charm! even when I substitute io.BytesIO with my original StringIO. Can you remind you what the why you choose to use the former here? Thanks! – nye17 Dec 22 '11 at 3:24
For Python2.6 or better, use io.BytesIO instead of cStringIO.StringIO for forward-compatibility. In Python3, the cStringIO, StringIO modules are gone. Their functionality is all in the io module. – unutbu Dec 22 '11 at 10:21
gotcha, thanks! – nye17 Dec 23 '11 at 21:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.