YEPPPP,
You where right. Gif doesn't work
I just changed it to jpg and it worked., this is my working version.
Thanks very much for your help
<?
header("Content-type: image/jpg");
$im = imagecreatefromjpeg('test.jpg');
$r=imagecolorallocate($im, 0, 0, 255);
imagettftext($im, 20, 0, 10, 20, $r, 'impact.ttf', 'Test!!!');
imagejpeg($im);
imagedestroy($im);
?>
Drawmack, thanks for that script, I did not test it, I just went ahead and changed it to jpg and it worked. Anyways thanks for that code.