將Base64 中的字串轉換為映像並保存在檔案系統上
問題:
我有一個字串base64 格式,表示PNG 圖片。有沒有辦法將此圖像作為 PNG 檔案保存到檔案系統?
答案:
import base64
# Decode the base64 string into bytes
image_data = base64.decodebytes(base64_string)
# Write the decoded bytes to a file
with open("image.png", "wb") as f:
f.write(image_data)
此程式碼將在目前工作目錄中建立一個名為「image.png」的 PNG 檔案。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3