Skip to content

Instantly share code, notes, and snippets.

@Pestov
Created August 15, 2013 00:05
Show Gist options
  • Save Pestov/6237060 to your computer and use it in GitHub Desktop.
Save Pestov/6237060 to your computer and use it in GitHub Desktop.
Convert image to URI
<form method="post" action="#" enctype="multipart/form-data"><input type="file" name="file"/> <input type="submit" value="Кодировать в URI"/></form>
<?php
if(isset($_FILES['file'])){
echo "<textarea rows='1' cols='1' style='margin:10px;width:100%;height:800px;border:2px solid #333'>url(data:{$_FILES['file']['type']};base64,
" . base64_encode(file_get_contents($_FILES['file']['tmp_name'])) . ')</textarea>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment