i put he following code
Header("Content-type: image/gif");
if(!isset($s)) $s=11;
$size = imagettfbbox($s,0,"/fonts/TIMES.TTF",$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$xpad=9;
$ypad=9;
$im = imagecreate($dx+$xpad,$dy+$ypad);
$blue = ImageColorAllocate($im, 0x2c,0x6D,0xAF);
$black = ImageColorAllocate($im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
ImageRectangle($im,0,0,$dx+$xpad-1,$dy+$ypad-1,$black);
ImageRectangle($im,0,0,$dx+$xpad,$dy+$ypad,$white);
ImageTTFText($im, $s, 0, (int)($xpad/2)+1, $dy+(int)($ypad/2), $black, "/fonts/TIMES.TTF", $text);
ImageTTFText($im, $s, 0, (int)($xpad/2), $dy+(int)($ypad/2)-1, $white, "/fonts/TIMES.TTF", $text);
ImageGif($im);
ImageDestroy($im);
and i recieved the following errors
<br />
<b>Warning</b>: Could not find/open font in <b>c:\phpdev\www\tests\image-generation.php</b> on line <b>4</b><br />
<br />
<b>Warning</b>: Could not find/open font in <b>c:\phpdev\www\tests\image-generation.php</b> on line <b>15</b><br />
<br />
<b>Warning</b>: Could not find/open font in <b>c:\phpdev\www\tests\image-generation.php</b> on line <b>16</b><br />
<br />
<b>Fatal error</b>: Call to undefined function: imagegif() in <b>c:\phpdev\www\tests\image-generation.php</b> on line <b>17</b><br />
I am slightly confused. The GD library is pre -installed as far as i have installed an istallation kit phpdev.
Thus, where the problem is located?
If you have a specific tutorial in your mind then i will appreciate if you share it with me.
Thanks in advance