2021
03-09
03-09
Python3 实现将bytes图片转jpg格式
需求:我爬取的图片是bytes格式,需要直接存到本地。importurllib3importos#PIL图像处理标准库fromPILimportImagefromioimportBytesIOhttp=urllib3.PoolManager()response=http.request('GET','f.hiphotos.baidu.com/image/pic/item/8d5494eef01f3a29f863534d9725bc315d607c8e.jpg')result=response.data#将bytes结果转化为字节流bytes_stream=BytesIO(result)#读取到图片roiimg=Image.open(bytes_stream)#roii...
继续阅读 >