LeeZC's Blog

python 用base64 对图片文件的编码和解码处理

用base64 对图片文件的编码和解码处理

import base64

def convert(image):
    f = open(image)
    img_raw_data = f.read()
    f.close()

    img_b64_string = base64.b64encode(img_raw_data)
    convert_img_raw_data = base64.b64decode(img_b64_string)

    t = open("example.png", "w+")
    t.write(convert_img_raw_data)
    t.close()

if __name__ == "__main__":
    convert("test.png")
本文标签: python base64
本文编写于 1577572883000,技术更迭飞快,文中部分内容可能已经过时
本文网址: https://blog.leezc.cn/posts/2019-12-28-35102.html(转载注明出处)
如果你有任何建议或疑问可以在下面 留言
发表评论
相关推荐