Skip to content

Instantly share code, notes, and snippets.

@xmalinov
Created July 9, 2014 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xmalinov/853b5ba7ad726d160b61 to your computer and use it in GitHub Desktop.
Save xmalinov/853b5ba7ad726d160b61 to your computer and use it in GitHub Desktop.
Convert Image To Data URI With PHP
$str = 'This is an encoded string';
echo base64_encode($str);
$image = 'myimage.png';
$type = pathinfo($image, PATHINFO_EXTENSION);
$data = file_get_contents($image);
$dataUri = 'data:image/' . $type . ';base64,' . base64_encode($data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment