我有一个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中文网其他相关文章!