python 将 base64 编码的字符串转换为图片
时间: 2023-09-02 15:11:42 浏览: 332
base64编码转换为图片
可以使用 Python 的 base64 模块来解码 base64 编码的字符串,然后将其写入文件中,从而生成图片。以下是一个示例代码:
```python
import base64
# 读取 base64 编码的字符串
with open('image.txt', 'r') as f:
image_data = f.read()
# 解码 base64 字符串
image_binary = base64.b64decode(image_data)
# 将二进制数据写入图片文件
with open('image.jpg', 'wb') as f:
f.write(image_binary)
```
在上面的代码中,我们首先从文件中读取 base64 编码的字符串,然后使用 `base64.b64decode()` 方法将其解码为二进制数据。最后,我们将二进制数据写入一个新的图片文件中。注意,图片格式需要与原来的图片格式一致。
阅读全文