将 Base64 中的字符串转换为图像并保存在文件系统上
问题:
我有一个字符串base64 格式,表示 PNG 图像。有没有办法将此图像作为 PNG 文件保存到文件系统?
答案:
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)
此代码将在当前工作目录中创建一个名为“image.png”的 PNG 文件。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3