python图片转base64
时间: 2023-09-05 22:06:48 浏览: 191
python将图片文件转换成base64编码的方法
5星 · 资源好评率100%
可以使用Python中的base64模块来实现图片转换为Base64编码的操作。下面是一个示例代码:
```python
import base64
def image_to_base64(image_path):
with open(image_path, "rb") as img_file:
encoded_string = base64.b64encode(img_file.read())
return encoded_string.decode("utf-8")
image_path = "path/to/your/image.jpg"
base64_string = image_to_base64(image_path)
print(base64_string)
```
你只需将 `image_path` 替换为你要转换的图片路径,运行代码后会打印出对应的Base64编码字符串。
阅读全文