Conver Image to base64 Encoding - http://stackoverflow.com/a/13758760
<?php
function convertToBase64( $path ) {
// $path = 'myfolder/myimage.png';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
return $base64;
}
?>