Skip to content

Instantly share code, notes, and snippets.

@praveen-vishnu
Last active February 3, 2020 11:12
Show Gist options
  • Save praveen-vishnu/70217a13b12628fbc127b095d808dcc4 to your computer and use it in GitHub Desktop.
Save praveen-vishnu/70217a13b12628fbc127b095d808dcc4 to your computer and use it in GitHub Desktop.
Convert image file to base64
handleFileSelect(evt){
var files = evt.target.files;
var file = files[0];
if (files && file) {
var reader = new FileReader();
reader.onload =this._handleReaderLoaded.bind(this);
reader.readAsBinaryString(file);
}
}
_handleReaderLoaded(readerEvt) {
var binaryString = readerEvt.target.result;
this.base64textString= btoa(binaryString);
console.log(btoa(binaryString));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment