将 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中文网其他相关文章!