Does the GD2 extension come with PHP by default? If yes, since what version does it happen? Is it enabled by default?

thanks (:

link|improve this question

(PHP 4 >= 4.0.7, PHP 5) ... although I am not 100% sure. – Russell Dias May 9 '11 at 12:23
hmm, i don't think so...the manual suggests that GD(one) does not come with php until version 4.3. unfortunately it doesn't give me any clue about GD2. – hugo_leonardo May 9 '11 at 13:07
feedback

3 Answers

up vote 3 down vote accepted

GD isn't compiled with PHP by default but is included with many binary distributions of PHP.

Full details/instructions are here: http://www.php.net/manual/en/image.setup.php

link|improve this answer
feedback

Hmm I think i had to install mine on my server

do you have access to your server or is it a shared server?

If so -- check if php5-gd is installed

link|improve this answer
my doubt is merely informative. i need the info for a paperwork and i couldn't find it objetively in the manual :( – hugo_leonardo May 9 '11 at 13:13
feedback

On windows system, it is generally delivered but not installed. You can enable it by decommenting the section in the php.ini file.

On Linux systems (Debian & Ubuntu), on a default installation, it is activated. Rather than doing it in command line as suggests : Atticus, give it a try with a php info!

<?php 
    phpinfo();
?>

If GD is installed, you'll see it on that page. ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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