python String - Image 相互转换


Image2String

import base64
def image_str():
    with open("test.png", "rb") as imageFile:
        str = base64.b64encode(imageFile.read())
        return str

String2Image

def str_image(str):
    fh = open("o_test.png", "wb")
    fh.write(str.decode('base64'))
    fh.close()

示例

import base64
import sys as sys
def image_str():
    with open("test.png", "rb") as imageFile:
        str = base64.b64encode(imageFile.read())
        return str

def str_image(str):
    fh = open("o_test.png", "wb")
    fh.write(str.decode('base64'))
    fh.close()

str = image_str()
print str
print sys.getsizeof(str)
str_image(str)
View Code

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM