Skip to content

Instantly share code, notes, and snippets.

@weishai
weishai / Image-convert-to-Base64.js
Last active August 29, 2015 14:19
Image convert to Base64
function readImage(input) {
if ( input.files && input.files[0] ) {
var FR= new FileReader();
FR.onload = function(e) {
$('#img').attr( "src", e.target.result );
$('#base').text( e.target.result );
};
FR.readAsDataURL( input.files[0] );
}
}