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
Remember to call buf.seek(0) so Image.open(buf) starts reading from the
beginning of the buf:
import io
from PIL import Image
import matplotlib.pyplot as plt
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()