python request的Request对象经过转码储存成图片
Posted Jason_WangYing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python request的Request对象经过转码储存成图片相关的知识,希望对你有一定的参考价值。
话不多说,直接看代码
from PIL import Image
from io import BytesIO
res = client.qrcode.show(ticket)
response_byte = res.content
bytes_stream = BytesIO(response_byte)#请求数据转化字节流
capture_img = Image.open(bytes_stream)#Image打开二进制流Byte字节流数据
capture_img.save('static/img/'+ticket+'.png')
以上是关于python request的Request对象经过转码储存成图片的主要内容,如果未能解决你的问题,请参考以下文章