header ("Content-type: image/png");
$handle = ImageCreate (30, 30) or die ("Cannot Create image");
$background_color = ImageColorAllocate ($handle, 125, 0, 0);
$text_color = imagecolorallocate($handle, 255, 255, 255);
imagestring($handle, 5, 5, 5, "2", $text_color);
ImagePng ($handle)...