admin管理员组文章数量:1339781
You need to get a jpg and convert to arrayBuffer, does anyone have any idea how to do this? I tried doing using a function below but without success for a Microsoft API
document.querySelector('#inputImage').addEventListener('change', function() {
var reader = new FileReader();
reader.onload = function() {
var arrayBuffer = this.result,
array = new Uint8Array(arrayBuffer);
};
You need to get a jpg and convert to arrayBuffer, does anyone have any idea how to do this? I tried doing using a function below but without success for a Microsoft API
document.querySelector('#inputImage').addEventListener('change', function() {
var reader = new FileReader();
reader.onload = function() {
var arrayBuffer = this.result,
array = new Uint8Array(arrayBuffer);
};
Share
Improve this question
asked Dec 17, 2018 at 14:18
Adilmar Coelho DantasAdilmar Coelho Dantas
731 gold badge2 silver badges11 bronze badges
4 Answers
Reset to default 5You can use this function to convert your base64 Image to an Array Buffer
export async function base64ToFile(dataURL, fileName) {
const arr = dataURL.split(',');
const mime = arr[0].match(/:(.*?);/)[1];
return (fetch(dataURL)
.then(function (result) {
return result.arrayBuffer();
}));
}
document.querySelector('#inputImage').addEventListener('change', function() {
var reader = new FileReader();
reader.onload = function() {
var arrayBuffer = new Uint8Array(reader.result);
console.log(arrayBuffer);
};
reader.readAsArrayBuffer(this.files[0]);
});
<input type="file" id="inputImage">
For the modern browsers just use the arrayBuffer
method of the File
object which is inherited from the Blob
object:
const ab = await input.files[0].arrayBuffer();
const input = document.createElement("input");
input.type = "file";
document.body.append(input);
input.addEventListener("change", async event => {
const ab = await input.files[0].arrayBuffer();
const ui8a = new Uint8Array(ab);
console.log("Uint8Array", ui8a);
});
Looks to me that this
is something else in your code. Either use bind()
:
reader.onload = function() { .... }.bind(this);
or use a fat arrow syntax:
reader.onload = () => { .... };
Because this.result
if result
is the property/attribute of input then i would say that this does not refers to the input element.
本文标签: javascriptImage to ArrayBuffer in JsStack Overflow
版权声明:本文标题:javascript - Image to ArrayBuffer in Js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743599498a2508369.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论