php 4.3.x is available, and it includes a version of gd as "standard equipment." php_gd2.dll is included in a standard PHP installation for Windows, it's just not enabled by default. To turn it on, the user may simply uncomment the line "extension=php_gd2.dll" in php.ini and restart the PHP extension. Change:
Code:
#extension=php_gd2.dll
To:
Code:
extension=php_gd2.dll
You may also have to correct the extension directory setting from:
Code:
extension_dir = "./"
Or:
Code:
extension_dir = "./extensions"
To (FOR WINDOWS):
Code:
extension_dir = "c:/php/extensions"
NOTE: SUBSTITUTE THE ACTUAL PHP INSTALLATION DIRECTORY ON *YOUR* COMPUTER.