sbuf = StringIO()
sbuf.write(decoded_file)
pimg = Image.open(sbuf)
print pimg.size
cimage = StringIO()
pimg.seek(0)
pimg.save(cimage,'jpeg')
contents = cimage.getvalue()
if contents == decoded_file:
print '1------->> ok!'
' decoded_file'是一个图像缓冲区字符串。我想转换PIL.Image对象' pimg'到内容'和'内容'应该等于' decoding_file'。