当前位置:   article > 正文

python脚本-base64.decode-base64字符串解码直接得到图片_python base64.decode

python base64.decode

python手册:

base64.decode(input, output)
Decode the contents of the binary input file and write the resulting binary data to the output file. input and output must be file objects. input will be read until input.readline() returns an empty bytes object.
解码二进制输入文件,并写入解码后的二进制数据到输出文件。输入将会读到input.readline()返回一个空的bytes对象。

import base64
import os

current_path = os.path.dirname(__file__)

if __name__ == '__main__':
    # 打开文件
    file1 = current_path + "\\doc\\form"
    file2 = current_path + "\\doc\\later.png"
    f1 = open(file1,"rb")
    f2 = open(file2,"wb")

    # base64.encode(f1,f2)
    base64.decode(f1,f2)

    f1.close()
    f2.close()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/177196
推荐阅读
相关标签
  

闽ICP备14008679号