Log in

View Full Version : need some GD help


AN-net
10-18-2004, 09:13 PM
im getting these errors:

Warning: imagettftext(): Could not find/open font in /home2/animati/public_html/dev/testcard.php on line 7

Warning: Cannot modify header information - headers already sent by (output started at /home2/animati/public_html/dev/testcard.php:7) in /home2/animati/public_html/dev/testcard.php on line 9

Fatal error: Call to undefined function: imagegif() in /home2/animati/public_html/dev/testcard.php on line 11


code:

<?PHP

$before= ImageCreateFromGif("./testcard.gif");

$colortext= imagecolorallocate($before, 0, 0, 0);

ImageTTFText($before, 12, 0, 5, 20, $colortext, "VERANDA", "Antonbomb22");

header("Content-Type: image/GIF");

ImageGif($before);

?>

Link14716
10-18-2004, 09:25 PM
It can't find the font.

AN-net
10-18-2004, 09:41 PM
the font have to be on my server?

and why does it say ImageGif doesnt exist>_<

Link14716
10-18-2004, 09:50 PM
Does your version of GD have gif write support? If not, just make it a PNG.

And considering the font is put on the image on the server - yes, the font has to be on the server.

AN-net
10-18-2004, 09:59 PM
Does your version of GD have gif write support? If not, just make it a PNG.

And considering the font is put on the image on the server - yes, the font has to be on the server.
how would i check if it has gif support?

Natch
10-18-2004, 11:48 PM
run in a php script similar to phpinfo(); but replace with print_r(gd_info());