Python 圖片與字符串互轉

#coding:utf-8

# 引入base64庫
import base64

# 把圖片壓縮成字符串
with open("c:\\test.jpg", "rb") as imageFile:
    image2str = base64.b64encode(imageFile.read())
    #print image2str
    
# 把字符串還原成圖片
with open("c:\\str2image.png",'wb') as str2image:
    str2image.write(image2str.decode('base64'))
相關文章
相關標籤/搜索