前端之家收集整理的这篇文章主要介绍了
js 图片转base64的方式(两种),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
方式一:Blob和FileReader 对象
实现原理:
使用xhr请求图片,并设置返回的文件类型为Blob对象[xhr.responseType = "blob"]
使用FileReader 对象接收blob
<
Meta charset="UTF-8">
<
Meta name="viewport" content="width=device-width,initial-scale=1.0">
<
Meta http-equiv="X-UA-Compatible" content="ie=edge">
js 图片转base64方式