2021年5月26日

Python 将base64字符串还原成图片保存&&图片转base64

摘要: base64转图片 import base64 def base64_to_img(bstr, file_path): imgdata = base64.b64decode(bstr) file = open(file_path, 'wb') file.write(imgdata) file.clo 阅读全文

posted @ 2021-05-26 16:12 星河赵 阅读(2993) 评论(0) 推荐(0) 编辑

导航