首页 > 代码库 > Python base64 和图片相互转换

Python base64 和图片相互转换



os, base64


###图片转换为base64编码
(,) faf.read()
strbase64.b64encode(a)
str



###base64编码转换图片
tbase64.b64decode(str)
(,) ff.write(t)


本文出自 “奋斗吧” 博客,请务必保留此出处http://lvnian.blog.51cto.com/7155281/1884023

Python base64 和图片相互转换