Php - Encode image for fast access, Load webpage faster using encoded image

Encode image for fast access

Load webpage faster using encoded image in php, this helps you to load your page faster.
  function encode_image($filename){
    $contents = file_get_contents($filename);
    $base64 = base64_encode($contents);
    $imagetype = exif_imagetype($filename);
    $mime = image_type_to_mime_type($imagetype);
    return "data:$mime;base64,$base64";
  }

How to Use?
 echo "<img src='".encodeimg("images/userimage.jpg")."'/>";

The topic on Php - Encode image for fast access is posted by - Maha

Hope you have enjoyed, Php - Encode image for fast accessThanks for your time

Tech Bluff