angular-file-upload icon indicating copy to clipboard operation
angular-file-upload copied to clipboard

Files Preview

Open hamza005 opened this issue 6 years ago • 1 comments

Is it possible to preview every type of file before upload?

hamza005 avatar Mar 28 '18 09:03 hamza005

Maybe you can use FileReader(); uploader.onAfterAddingFile = function(item) { //do something; if (uploader.isHTML5) { var reader = new FileReader(); reader.onloadstart = function () { //do something; }; reader.onerror = function () { //do something; }; reader.readAsDataURL(Items._file); reader.onload = function(e){ //do something; } ; } }

shenghou avatar Apr 26 '18 07:04 shenghou