Last active
February 3, 2020 11:12
-
-
Save praveen-vishnu/70217a13b12628fbc127b095d808dcc4 to your computer and use it in GitHub Desktop.
Convert image file to base64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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