Hi,
Thank you, I have downloaded php_gd.dll and copied it to my php directory then edit php3.ini file just as following:
...
[LoadExtensions]
extension=php_gd.dll
...
but I still can't get right gif,that's why?
the script as followings:
following are "button.php3"
<?
Header("Content-type:image/gif");
$string=implode("",$argv);
$im=imagecreatefromgif("button.gif");
$orange=ImageColorAllocate($im,220,210,60);
$px=(imagesx($im)-9*strlen($string))/2;
ImageString($im,16,$px,2,$string,$orange);
ImageGif($im);
ImageDestroy($im);
?>
following are "button.html"
<head>
<title>Many Button</title>
</head>
<body>
<center>
Send: <IMG SRC="button.php3?send">
Submit:<IMG SRC="button.php3?sumbit">
Paste: <IMG SRC="button.php3?paste">
</center>
</body>
Jenny.