js http://192.168.9.234/group2/M00/00/04/wKgJ7GRkNL2ALvgnAEaR34j_O3Y743.jpg将图片 转换为base64 字符串
时间: 2023-08-04 14:06:07 浏览: 92
好的,以下是一个将图片转换为base64字符串的JavaScript示例代码:
```javascript
const imageUrl = "http://192.168.9.234/group2/M00/00/04/wKgJ7GRkNL2ALvgnAEaR34j_O3Y743.jpg";
fetch(imageUrl)
.then(response => response.blob())
.then(blob => {
const reader = new FileReader();
reader.readAsDataURL(blob);
reader.onloadend = () => {
const base64String = reader.result;
console.log(base64String);
};
});
```
您只需要将 `imageUrl` 替换为您想要转换的图片路径,运行代码后,输出的 `base64String` 就是图片的base64字符串。这里使用了 `fetch()` 方法来获取图片的Blob对象,然后使用 `FileReader` 对象来读取并转换为base64字符串。
阅读全文