First I'm on Red Hat Linux w/ apache w/ PHP 4.1.2 w/ GD 1.6.0
I'm trying to use fonts other the default GD font. See my sig script to see the default http://www.mikestermedia.com/sig2/tag.png
<?php header ("Content-type: image/png");
$im = imagecreate (250, 28);
$black = ImageColorAllocate ($im, 0, 0, 0);
$yellow = ImageColorAllocate ($im, 235, 235, 51);
ImageTTFText ($im, 20, 0, 10, 20, $yellow, "/WINDOWS/Fonts/IMPACT.ttf",
"IMPACT FONT HIP HIP Hurray!!!");
ImagePNG($im);
?>
I got this example from phpfreaks. I don't think linux has a WINDOWS dir. How can I make this work??