jackal adlı üyeden alıntı: mesajı görüntüle
resımlerın uzerıne yazı yazdırma olayı olsa super olacak
o başka bir class olarak yazılabilir..

Resim olarak yazı yazmak (Orjinal : Write text on a dynamically generated image using PHP at DiscoMoose)
<?
$resim = imagecreate(100, 20);
$arkaplan = imagecolorallocate($resim, 0, 255, 0); // Yeşil
$yazi = imagecolorallocate($resim, 0, 0, 0); //siyah
imagestring($resim, 4, 10, 2, ‘r10.net’, $yazi);

Header(’Content-type: image/png’);
imagepng($resim);
imagedestroy($resim);
?>
Resim üzerine yazı yazmak (Orjinal : )
<?
$im = imagecreatefrompng("image.png");
if(!$im)
{
 die("");
}
 
$yellow = imagecolorallocate($im, 255, 255, 0);
$black = imagecolorallocate($im, 0, 0, 0);
$width = imagesx($im);
$height = imagesy($im);
imagefilledrectangle($im, 0, ($height-20) , $width, $height, $black);
$font = 4;
$text = "r10.net";
$leftTextPos = ( $width - imagefontwidth($font)*strlen($text) )/2;
imagestring($im, $font, $leftTextPos, $height-18, $text, $yellow);
Header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>