Thanks Devin, it worked!
Now I have another problem getting text on there.
I ./configured PHP with --with-gd --with-ttf and --enable-gd-imgstrttf. However, when I take alook at my phpinfo page, I don't see the --with-ttf! Strange. I even rm config.cache and re-configured/make/make installed it again and still I don't see the --with-ttf option on my phpinfo page. Oh Well, maybe I don't need it.
My program I'm trying to run is:
<?
header ("Content-type: image/png");
$image = imagecreate( 400, 200 );
$red = imagecolorallocate($image,255,0,0);
$blue = imagecolorallocate($image,0,0,255);
$font = "webadmin/fonts/arial.ttf";
imageTTftext ($image, 50, 0, 20, 100, $blue, $font, "Welcome!" );
imagepng ($image);
?>
When I run this, I get just a blank canvas. If I comment out the imageTTftext line, I get the colored rectangle. No text either times.
Anyways, It seems I should have everything installed to output text. You have any ideas?
PHP 4.0.4 on slackware 7.1