base64转换
Posted diracy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了base64转换相关的知识,希望对你有一定的参考价值。
import os, base64,re
li=os.listdir(r‘C:UserslenovoDesktopallsvg‘)
os.chdir(r‘C:UserslenovoDesktopallsvg‘)
print(li)
for i in li:
with open(i,mode=‘rb‘,) as f:
m=f.read()
print(m)
s=re.findall(‘xlink:href="data:image/jpeg;base64,(.*?) "‘,m)
imgdata = base64.b64decode(s)
with open(i.split(‘.‘)[0]+‘.jpg‘, ‘wb‘) as f:
f.write(imgdata)
以上是关于base64转换的主要内容,如果未能解决你的问题,请参考以下文章
如何将 blob 图像转换为 base64? base64 变量显示为空