將Base64 中的字符串轉換為圖像並保存在文件系統上
問題:
我有一個字串base64 格式,表示PNG 圖片。有沒有辦法將此圖像作為 PNG 檔案保存到檔案系統?
答案:
<code class="python">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)</code>
此程式碼將建立一個名為「image」的 PNG 檔案.png」在目前工作目錄中。
以上是如何將 Base64 字串轉換為 PNG 映像並儲存到檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!