Last active
April 19, 2016 02:14
-
-
Save mikesprague/91c048a8ee1939f388eaeb3e82d58293 to your computer and use it in GitHub Desktop.
Create and output data URI from an image file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function create_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