Thanks! I did that. But still having a problem. Here is the bit of code from Sams' 21 Hours:
<?
header("Content-Type: image/png");
$im = ImageCreate(400, 200);
$red = ImageColorAllocate($im,255,0,0);
$blue = ImageColorAllocate($im,0,0,255);
$font="/usr/local/apache/htdocs/www.egwald.com/fonts/LSANS.TTF";
//$font="http://www.egwald.com/fonts/LSANS.TTF";
imageTTFtext($im,50,0,20,100,$blue,$font,"Welcome");
//ImageString($im, 10, 20, 100, "Welcome", $blue);
imagepng($im);
?>
I tried it with both paths to the font file. It works with ImageString but not with ImageTTFtext.
Could it be my server is not supporting ImageTTFtext?