Image Created With Blob Only Contains Numbers And Commas
I have a file on my device that is stored in a folder like: /opt/share/folder/image.jpg I'd like to upload this file on my server using some ajax request just as I'd do with a sta
Solution 1:
I finally found what was wrong with my code.
In fact, readBytes return an array of number corresponding to bytes, but the array isn't formatted as a byte array.
Creating a new Uint8Array from this array did the trick:
var raw = fs.readBytes(1024);
var byteArray = new Uint8Array(raw);
var blob = new Blob([byteArray], {type:"image/jpeg"});
Post a Comment for "Image Created With Blob Only Contains Numbers And Commas"