function image_encode($AFileName)
{
return
'data: ' .
'image/jpeg' .
';base64, ' .
base64_encode(file_get_contents($AFileName));
}
Listing 16.5. Funkcja image_encode()
Rozdział 16. Elementy img, figure i figcaption