Skip to content

Instantly share code, notes, and snippets.

@betawax
Created December 10, 2013 09:19
Show Gist options
  • Save betawax/7887877 to your computer and use it in GitHub Desktop.
Save betawax/7887877 to your computer and use it in GitHub Desktop.
Display a image as Base64 data
$data = file_get_contents('foobar.jpg');
echo '<img src="data:image/jpeg;base64,'.base64_encode($data).'" />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment