网络图片地址转为base64格式
时间: 2023-09-20 20:06:06 浏览: 162
图片转base64
4星 · 用户满意度95%
将网络图片地址转为base64格式可以通过以下步骤实现:
1. 使用Python的requests库获取网络图片的二进制数据。
2. 使用base64库将二进制数据转换为base64格式。
下面是一个示例代码:
```python
import requests
import base64
url = "https://example.com/image.jpg"
response = requests.get(url)
image_data = response.content
base64_data = base64.b64encode(image_data).decode('utf-8')
print(base64_data)
```
其中,`url`是网络图片的地址,`requests.get()`方法可以获取该地址的二进制数据,`base64.b64encode()`方法将二进制数据转换为base64格式,最后使用`decode()`方法将bytes类型的base64数据转换为字符串类型。
阅读全文