python字符串和数字相互转换

有时候不方便保存图片,需要将图片转换成字符串进行保存,比如保存到excel中,可以使用如下方法:

# coding=utf-8
import base64

image = 'new_result.png'

# 将图片encode为二进制字符串
with open(image, 'rb') as f:
    str = base64.b64encode(f.read())
print(str)

# 将二进制字符串(图片)decode为图片
file_str = open('transform_new_result.png', 'wb')
file_str.write(base64.b64decode(str))
file_str.close()

你可能感兴趣的:(Python脚本,python,字符串,图片)