# -*- coding:utf-8 -*-
#!python3
import os
import base64
sss ="""base64的编码"""
print(len(sss))
imagedata = base64.b64decode(sss)
print(imagedata)
file = open('1.jpg',"wb")
file.write(imagedata)
file.close()

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-22
  • 2022-01-23
  • 2022-12-23
  • 2021-10-22
猜你喜欢
  • 2021-10-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2022-01-21
  • 2022-12-23
相关资源
相似解决方案