I made a face?
FACE CODE FOLLOWS
<?php
$image = imagecreate(410, 300);
$cream = imagecolorallocate($image, 255, 253, 208);
imagefilledrectangle($image, 0, 0, 410, 300, $cream);
$color = imagecolorallocate ($image, 0, 250, 255);
imagearc($image, 200, 150, 200, 200, 0, 360, $color);
imagearc($image, 210, 186, 50, 20, 0, 360, $color);
imagearc($image, 160, 130, 10, 10, 0, 360, $color);
imagearc($image, 235, 130, 10, 10, 0, 360, $color);
header("Content-type: image/png");
imagepng($image);
imagedestroy ($image);
?>