Fwd: ImageCreate() function Problem

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Dear All,
I'm using :
- Apache 2.2.3
- PHP 5.2
- On Windows XP SP2

Executing a simple code :
<?php
$myImage  =   imagecreate(200, 100);
$myGrey = imagecoloraallocate ($myImage, 204, 204, 204);
$myBlack =  imagecolorallocate($myImage,  0,  0,  0);
imageline($myImage,  15, 35, 120, 60, $myBlack);
header("Content-type: image/png");
imagepng($myImage);
imagedestroy($myImage);
?>

On Execution I Got :
Fatal error: Call to undefined function imagecreate() ..........

In php.ini :
extension_dir = "c:\php\ext"
;php_gd2 extension uncommented
extension=php_gd2.dll

Restarted many times. Still the problem exist. Any suggestion please,
what should I do ?

Regards,

Arief K

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


[Index of Archives]     [PHP Home]     [PHP Users]     [PHP Database Programming]     [PHP Install]     [Kernel Newbies]     [Yosemite Forum]     [PHP Books]

  Powered by Linux