A Dynamically Created Image
<?php header("Content-type: image/gif"); $image = imagecreate( 200, 200 ); imagegif($image); ?>