Hi,
Iam using php 4.3 with internal complied GD on linux server. Iam trying to write some words on jpg file with "ImageTTFtext" I get error page. Please let me know if there is any other alternative to write the image.?
Code below is what iam trying to do.
<?
Header("Content-type: image/jpeg");
$im = imagecreatefromjpeg("./cert1.jpg");
$black = imagecolorallocate($im, 0,0,0);
ImageTTFtext($im, 20, 0, 10, 20, $black, "./fonts/VERDANA.TTF","Testing... Omega");
Imagejpeg($im,'',20);
ImageDestroy($im);
?>
thanks
shzshi