openmv 将图片格式转换为BASE64
时间: 2023-12-28 17:03:41 浏览: 166
你可以使用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编码将其编码为字符串,并将其打印到控制台中。你可以将其保存到文件或发送到网络等。
阅读全文