Skip to content

Instantly share code, notes, and snippets.

@golchha21
Forked from jasny/image-embed-html.php
Created April 21, 2013 17:55
Show Gist options
  • Save golchha21/5430438 to your computer and use it in GitHub Desktop.
Save golchha21/5430438 to your computer and use it in GitHub Desktop.
<?php
$files = array_slice($argv, 1);
foreach ($files as $file) {
$picture = file_get_contents($file);
$size = getimagesize($file);
// base64 encode the binary data, then break it into chunks according to RFC 2045 semantics
$base64 = chunk_split(base64_encode($picture));
echo '<img src="data:' . $size['mime'] . ';base64,' . "\n" . $base64 . '" ' . $size[3] . ' />', "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment