Skip to content

Instantly share code, notes, and snippets.

@timwright12
Created September 8, 2015 16:46
Show Gist options
  • Save timwright12/3adfab03dc7d414c832b to your computer and use it in GitHub Desktop.
Save timwright12/3adfab03dc7d414c832b to your computer and use it in GitHub Desktop.
<?php
$SITEPATH = $_SERVER['DOCUMENT_ROOT'] . '/path/to/dir/';
function get_uri( $image, $mime = '' ) {
return 'data: ' . $mime . ';base64,'.base64_encode(file_get_contents( $image ));
}
?>
<img src="<?php echo get_uri($SITEPATH . 'images/worms.jpg', 'image/jpg'); ?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment