在javascript中将图像转换为二进制数据
IT技术
javascript
jquery
2021-01-20 15:47:05
1个回答
我认为在 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 编码返回图像。它将被重新编码。因此您无法访问原始图像数据。
其它你可能感兴趣的问题