I try to zip a file from a file input element, but it does not work. How can I do it by using Javascript?
var input = document.getElementById("id1");
const filereader = new FileReader();
filereader.onload = function() {
zip.file("picture.png", filereader.result, {binary: true});
}
filereader.readAsDataURL(input.files[0]);
<input type="file" id="id1" style="border-radius: 0.1px; width: 40%;" accept="image/*">
As
zip.file(name, data [,options])
acceptblob
datatype, you just need to get it’s files