首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >在javascript中将图像转换为二进制数据

在javascript中将图像转换为二进制数据
EN

Stack Overflow用户
提问于 2011-03-24 22:04:59
回答 1查看 83.2K关注 0票数 17

可能的重复项:

Get image data in Javascript?

How to encode image data within an HTML file?

有没有办法在javascript中将图像转换成二进制数据,反之亦然。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2011-03-24 22:06:41

我认为Get image data in JavaScript?回答了你的问题:

代码语言:javascript
复制
// Code taken from MatthewCrumley (https://stackoverflow.com/a/934925/298479)
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,/, "");
}

img标记传递给此函数。它将返回base64编码的图像。不过,它将被重新编码。因此,您无法访问原始图像数据。

票数 43
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/5420384

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档