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);
?>
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);
?>