<?php
 header("Content-type: image/gif");
 $im = imagecreatefromgif("myimage.gif");
 imagegif($im);
 imagedestroy($im);

?>
