python将图片转为base64格式
时间: 2023-07-29 13:07:57 浏览: 99
python将图片文件转换成base64编码的方法
5星 · 资源好评率100%
可以使用Python的base64模块将图片转换为base64格式。以下是一个示例代码:
```python
import base64
with open("image.jpg", "rb") as image_file:
encoded_string = base64.b64encode(image_file.read())
print(encoded_string)
```
其中,"image.jpg"是图片文件的路径。运行上述代码后,将输出图片的base64编码字符串。
阅读全文