将 Base64 格式的字符串转换为图像并保存在文件系统上
如果您有一个代表 PNG 图像的 Base64 格式的字符串,这里是如何将其转换为图像并将其保存到 Python 中的文件系统:
<code class="python">import base64 import io # Decode the base64 string into binary data binary_data = base64.b64decode(base64_string) # Create a file-like object from the binary data image_file = io.BytesIO(binary_data) # Save the image to a file with open('image_name.png', 'wb') as f: f.write(image_file.read())</code>
以上是如何在 Python 中将 Base64 编码的 PNG 字符串转换为图像并将其保存到文件系统?的详细内容。更多信息请关注PHP中文网其他相关文章!