#### Base64 Encoding ``` php $im = file_get_contents('filename.gif'); $imdata = base64_encode($im); ```