Skip to content

Instantly share code, notes, and snippets.

@Chavao
Created September 18, 2012 17:47
Show Gist options
  • Save Chavao/3744589 to your computer and use it in GitHub Desktop.
Save Chavao/3744589 to your computer and use it in GitHub Desktop.
<?php
function get_data_uri($image_path) {
return 'data: '.mime_content_type($image_path).';base64,'.base64_encode(file_get_contents($image_path));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment