Skip to content

Instantly share code, notes, and snippets.

@phpfiddle
Created July 11, 2013 07:44
Show Gist options
  • Save phpfiddle/5973378 to your computer and use it in GitHub Desktop.
Save phpfiddle/5973378 to your computer and use it in GitHub Desktop.
Base 64 Encoder
<?php
$imagedata = file_get_contents("http://profile.ak.fbcdn.net/hprofile-ak-ash4/369185_100000266719868_760182562_q.jpg");
$base64 = base64_encode($imagedata);
echo $base64;
?>
<img src= "data:image/png;base64,<?php echo $base64; ?>" >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment