酷帥王子'blog-

python转base64为图片源代码

2020-1-7 20:18 作者:酷帥王子 | python网络安全 |

#coding=utf-8
import os
import base64
strs='''''' //这里填写base64的字符串
lens = len(strs)
lenx = lens - (lens % 4 if lens % 4 else 4)
try:
    with open('test1.png','wb') as f:
        f.write(base64.b64decode(strs[:lenx]))
except: //防止爆TypeError: Incorrect padding

pass

//我菜鸟,刚开始学习编程,只能遇到点小需求就去练习写,这鸭子才有意思

文章作者:酷帥王子
文章地址:https://www.2k8.org:443/post-134.html
版权所有 © 转载时必须以链接形式注明作者和原始出处!

发表评论:



Powered by 酷帥王子

CopyRight © 2009-2016 酷帥王子'blog.  All rights reserved.