LoverzSoft adlı üyeden alıntı: mesajı görüntüle
<?php
header('Content-type: image/png');
$resim = imagecreatetruecolor(400, 30);
$beyaz = imagecolorallocate($resim, 255, 255, 255);
$siyah = imagecolorallocate($resim, 0, 0, 0);
imagefilledrectangle($resim, 0, 0, 399, 29, $beyaz);
$metin = 'info@loverzsoft.com'; //yazı yeri
$font = 'arial.ttf';//font yeri
imagettftext($resim, 20, 0, 10, 20, $siyah, $font, $metin);
imagepng($resim);
imagedestroy($resim);
?>
sağolasın oldu.