Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Last active January 4, 2016 02:29
Show Gist options
  • Select an option

  • Save sdeluce/8555122 to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/8555122 to your computer and use it in GitHub Desktop.
Encoder une image en base64
<?php
$img = file_get_contents('monimage.png');
$img64 = 'data:image/x-icon;base64,'.base64_encode($img);
echo '<img src="'.$img64.'"" />';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment