button.php :
<?
//Header("Content-type: image/png ");
$string=implode($argv," ");
$im = imageCreateFromPng("images/button1.png");
$orange = ImageColorAllocate($im, 220, 210, 60);
$px = (imagesx($im)-7.5*strlen($string))/2;
ImageString($im,3,$px,9,$string,$orange);
ImagePng($im);
ImageDestroy($im);
?>
http://localhost/button.php?text gives:
Warning: imagecreatefrompng: Unable to open 'images/button1.png' for reading in c:\foxserv\www\button.php on line 4
Warning: Supplied argument is not a valid Image resource in c:\foxserv\www\button.php on line 5
Warning: Supplied argument is not a valid Image resource in c:\foxserv\www\button.php on line 6
Warning: Supplied argument is not a valid Image resource in c:\foxserv\www\button.php on line 7
Warning: Supplied argument is not a valid Image resource in c:\foxserv\www\button.php on line 8
Warning: Supplied argument is not a valid Image resource in c:\foxserv\www\button.php on line 9