Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to integrate "pChart" with my PHP code. When I am trying to run the samples it gives me an error stating call to undefined function imagecreatetruecolor. The suggestion solution was to load this dll "php_gd2.dll" so I have uncommented extension=php_gd2.dll in php.ini file.

Even after that I get the same error. I have tried restarting the server & machine too.

share|improve this question
use get_defined_functions to seek for function imagecreatetruecolor – ajreal Dec 30 '10 at 8:09
are you sure that gd is set up ok? is it listed in phpinfo()? – prodigitalson Dec 30 '10 at 8:16
@kartnik Could you accept/comment on the answer? – St.Woland Dec 31 '10 at 9:33

1 Answer

Use the following code to test if you have GD extension:

<?php
$testGD = get_extension_funcs("gd"); // Grab function list 
if (!$testGD){ echo "GD not even installed."; exit; }
echo"<pre>".print_r($testGD,true)."</pre>";

If you get the message that it's not installed, then check the following steps:

  1. phpinfo() and look up php.ini path
  2. edit php.ini: extension_dir=<path to your extensions>
  3. edit php.ini: extension=php_gd2.dll //uncomment or add
  4. Restart web server
  5. Run the test script again
share|improve this answer
+1 - or even with get_loaded_extensions() – ajreal Dec 30 '10 at 8:50
Thanks, I resolved it by adding the PHP Path(c:\PHP) in environmental PATH variable – karthik Jan 1 '11 at 17:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.