我有一個base64格式的字串表示PNG 圖像。如何將此圖像作為 PNG 檔案保存到檔案系統?
<code class="python">import base64 # Decode the base64-encoded string and convert it into binary data. binary_data = base64.b64decode(string_data) # Save the binary data to a file. with open('image.png', 'wb') as f: f.write(binary_data)</code>
在此範例中,string_data 是一個 base64 編碼的字串,image.png 是所需的保存影像的檔案名稱。
以上是如何解碼 Base64 編碼的圖像並將其儲存到磁碟?的詳細內容。更多資訊請關注PHP中文網其他相關文章!