如何在jQuery中将预加载的图像转换为base64数据

时间:2014-11-24 07:19:32

标签: javascript jquery base64

我指的是Get image data in JavaScript?

使用jQuery,我希望将预加载的img转换为base64编码数据。我尝试了我在上面提到的url中找到的函数,它给了我错误。

我从上述链接中找到的功能:

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,/, "");
}

我是如何尝试的:

var a = $('[active_contact][serial=1] img');
console.log(get_base64_image(a));

我从firbug控制台获得的错误:

TypeError: Argument 1 of CanvasRenderingContext2D.drawImage could not be converted to any of: HTMLImageElement, HTMLCanvasElement, HTMLVideoElement.
get_base64_image()

ctx.drawImage(img, 0, 0);

我怎样才能让这件事有效?我想使用jQuery将预加载的图像转换为base64以重用。欢迎任何更好的想法。

2 个答案:

答案 0 :(得分:0)

确保传入实际的Image元素(并且已正确加载):

var a = $('[active_contact][serial=1] img')[0]; // notice [0] at the end = image

答案 1 :(得分:0)

您的功能名称不匹配。

在def。它是getBase64Image,当你调用它时,你写了get_base64_image。

我正在寻找一些像这样的代码,你的名字改变之后就为我工作了。