Skip to content

Instantly share code, notes, and snippets.

@jswhisperer
Created May 27, 2013 14:22
Show Gist options
  • Select an option

  • Save jswhisperer/5657330 to your computer and use it in GitHub Desktop.

Select an option

Save jswhisperer/5657330 to your computer and use it in GitHub Desktop.
PHP: Base64 Images
function data_uri($file, $mime) {
$contents=file_get_contents($file);
$base64=base64_encode($contents);
echo "data:$mime;base64,$base64";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment