当前位置:  开发笔记 > 编程语言 > 正文

Javascript将URL转换为BASE64图像

如何解决《Javascript将URL转换为BASE64图像》经验,为你挑选了1个好方法。



1> Adam Azad..:

onload图像完全加载后,图像实例触发事件。随之而来的另一个问题是处理异步函数。为了能够使用什么getBase64Image用途,必须使用回调函数。没有回调函数,该函数将返回undefined

let base64image = this.getBase64Image(imgUrl);
console.log(base64image); // undefined

调整功能

public getBase64Image(imgUrl, callback) {

    var img = new Image();

    // onload fires when the image is fully loadded, and has width and height

    img.onload = function(){

      var canvas = document.createElement("canvas");
      canvas.width = img.width;
      canvas.height = img.height;
      var ctx = canvas.getContext("2d");
      ctx.drawImage(img, 0, 0);
      var dataURL = canvas.toDataURL("image/png"),
          dataURL = dataURL.replace(/^data:image\/(png|jpg);base64,/, "");

      callback(dataURL); // the base64 string

    };

    // set attributes and src 
    img.setAttribute('crossOrigin', 'anonymous'); //
    img.src = imgUrl;

}

用法:

this.getBase64Image(imgUrl, function(base64image){
     console.log(base64image);
});

推荐阅读
爱唱歌的郭少文_
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有