fazlurr
8/23/2016 - 5:30 AM

Conver Image to base64 Encoding - http://stackoverflow.com/a/13758760

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;
}
?>