I'm running PHP 4.3 and W2k with IIS 5.0.  I have enabled php_gd and it does
show up when I do a phpinfo.  The php_gd.dll is in the winnt/system32
directory and it's in the extensions directory (I've also tried it in almost
every other directory too) and I get
this error message:

Fatal error:  Call to undefined function:  imagecreate() in
C:\Inetpub\wwwroot\template\index.php on line 4

Here's the code:
        <?php

            header("Content-type: image/png");
            $im = imagecreate(100, 20);

            $red   = imagecolorallocate($im, 255, 0, 0);
            $white = imagecolorallocate($im, 255, 255, 255);

            $ImageString($im, 3, 3, 3, "Home", $white);
            imagepng($im);

            ImagegDestroy($im);

        ?>
Any help would be appreciated.





-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to