給定一個表示PNG 圖片的Base64 格式的字串,一個常見的任務是需要保存它圖像以PNG 檔案形式傳輸到檔案系統。
以下是將Base64 字串轉換為映像並使用Python 將其儲存到檔案系統的步驟:
<code class="python">import base64 img_data = base64.b64decode(base64_string)</code>
<code class="python">with open("image.png", "wb") as f:</code>
<code class="python"> f.write(img_data)</code>
<code class="python">f.close()</code>
這是一個完整的範例:
<code class="python">import base64 # Replace "base64_string" with the actual base64-encoded string base64_string = "" img_data = base64.b64decode(base64_string) with open("image.png", "wb") as f: f.write(img_data)</code>
這會將PNG 影像儲存到目前目錄中名為在“image.png”的檔案中。
以上是如何在 Python 中將 Base64 編碼的圖像轉換並儲存到檔案系統?的詳細內容。更多資訊請關注PHP中文網其他相關文章!