码迷,mamicode.com
首页 > 编程语言 > 详细

使用 JavaScript 获取图片 base64 编码格式的文本

时间:2015-09-19 18:21:57      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

function getBase64Image(img) {
    // Create an empty canvas element
    var canvas = document.createElement("canvas");
    canvas.width = img.width;
    canvas.height = img.height;

    // Copy the image contents to the canvas
    var ctx = canvas.getContext("2d");
    ctx.drawImage(img, 0, 0);

    // Get the data-URL formatted image
    // Firefox supports PNG and JPEG. You could check img.src to
    // guess the original format, but be aware the using "image/jpg"
    // will re-encode the image.
    var dataURL = canvas.toDataURL("image/png");
    return dataURL.replace(/^data:image\/(png|jpg);base64,/, "");
}

使用 JavaScript 获取图片 base64 编码格式的文本

标签:

原文地址:http://my.oschina.net/u/2345713/blog/508571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!