图片和Base64互转

使用python将图片转化为base64字符串

import base64
f=open('d:\\target.jpg','rb') 
ls_f=base64.b64encode(f.read()) #读取文件内容,转换为base64编码
f.close()
print(ls_f)

base64字符串转化为图片

import base64
bs='iVBORw0KGgoAAAANSUhEUg....' # 太长了省略
imgdata=base64.b64decode(bs)
file=open('2.jpg','wb')
file.write(imgdata)
file.close()

你可能感兴趣的:(图片和Base64互转)