How would I use fonts with the following code...
<?
Header("Content-type: image/gif");
$string=implode($argv," ");
$im = imagecreatefromgif("./buttons/green.gif");
$color = ImageColorAllocate($im, 255, 255, 0);
$px = (imagesx($im)-9*strlen($string))/2;
ImageString($im,5,$px,3,$string,$color);
ImageGif($im);
ImageDestroy($im);
?>
called, of course by button.php?Foo
thanks.