base64编码转换为图片
时间: 2024-05-15 12:13:52 浏览: 129
图片转Base64编码工具
要将 base64 编码转换为图片,可以使用编程语言中的解码函数来解码 base64 编码,并将结果保存为图片文件。以下是 Python 代码示例:
```python
import base64
# 读取 base64 编码的字符串
with open('image.txt', 'r') as f:
encoded_string = f.read()
# 解码 base64 编码
decoded_bytes = base64.b64decode(encoded_string)
# 将解码后的数据保存为图片文件
with open('image.png', 'wb') as f:
f.write(decoded_bytes)
```
请将代码中的 `image.txt` 替换为包含 base64 编码的文件路径,将 `image.png` 替换为要保存的图片文件路径。
阅读全文