How do I enable gd on my Windows server?
GD 1.x 2.x are normally part of all standard PHP distributions under Windows To check if you have it, go to the directory where you installed PHP, go to the “extensions” subdir and see if you have a file named “php_gd2.dll”. Ocassionally, you will also need to edit your php.ini file (located in windows directory normally) and remove the “;” that is at the beginning of the line: extension=php_gd2.dll (at the end of the file). This will cause PHP to load the GD2 extension. Whenever you make changes to php.ini, remember that you will need to restart your webserver before changes become effective.