uploading, resizing images on php and iis server

A

Anonymous

Guest
yes it is ...
considering you have enabled GD with PHP...
 
For resizing images, Imagick is a better choice. Like GD, it needs to be enabled as an extension. See here.
 
uncomment the following line to enable gd
Code:
;extension=php_gd.dll
to
Code:
extension=php_gd.dll
 
Back
Top