base64 字符串轉爲圖片(python代碼)

將base64字符串轉爲圖片的python代碼,python爲咱們提供了b64decode函數,來實現這個功能。python import os import base64 import sys strs = sys.argv[1] # 讀取命令行中輸入的參數,即base64字符串 img = base64.b64decode(strs) file = open('test.jpg',
相關文章
相關標籤/搜索