如何将PIL.Image对象转换为缓冲区字符串?

时间:2017-10-07 09:39:20

标签: python python-imaging-library stringio

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'。

0 个答案:

没有答案