<?php
// Dosya Turununuzu belirleyiniz
header("Content-type: image/png");
// Resim Olusturma
$im = imagecreatetruecolor(400, 30);
// Renkler ve Olusumlari
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// Yazi metni buraya
$text = 'r10.net webmaster forum';
// Fontu veri tabaniniza atiniz index dosyanizin oldugu bolume
$font = 'arial.ttf';
// Yaziya golge perioidlerini duzenleyiniz rakamlarda oynama yapiniz
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// Resim uzerindeki yazi ach bolumu
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// on gorulen uzantilar
imagepng($im);
imagedestroy($im);
?>