发布时间:2019-06-21 17:33:18编辑:auto阅读(2758)
#coding:utf-8
# 引入base64库
import base64
# 把图片压缩成字符串
with open("c:\\test.jpg", "rb") as imageFile:
image2str = base64.b64encode(imageFile.read())
#print image2str
# 把字符串还原成图片
with open("c:\\str2image.png",'wb') as str2image:
str2image.write(image2str.decode('base64'))
上一篇: python整理:IDE环境安装-pyc
下一篇: CentOS 编译安装 python 3
51310
50761
41357
38165
32640
29535
28381
23255
23224
21548
1622°
2356°
1958°
1904°
2235°
1942°
2633°
4416°
4254°
3027°