Selam arkadaslar online olarak herhangi bir resim veya seçtiğiniz bir renk üzerine istediğiniz renk, boyut, font ve koordinatlarda yazı ekleme örneği bknz;
[php]
<?php
// Dosya Türü
header("Content-type: image/png");
// Resim oluşturuluyor
$im = imagecreatetruecolor(400, 30);
// Renkler oluşturuluyor
$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);
// Yazı yazılıyor
$text = 'Denem...
17 kez okundu