I know there is a lot of discussion over GD or ImageMagick for a LAMP setup.
I can't seem to get a solid answer on the best one though so I will explain my specific needs and maybe someone can help.
I will be using on a social networking site where users uploads photos to there image gallery.
All I need it to do is upload the file and make 2 thumbnails from the file, then save it, so there will be 3 images all together for every upload.
I need to resize the source image as well but only if it is wider then X amount of pixels.
Now I have this coded in php using GD but I am wondering if imagemagick would be better or not. I know imagemagick supports many more filetype and can do more special features to an image but as you can see I don't need all the fancy stuff, just some resizing pretty much. Since files being uploaded will be pretty high traffic, I am hoping to use whichever one would probably be the best performance in speed but retainning quality. So far the quality of the GD images is just fine so I know imagemagick would be evn better, so it comes down to speed and system resources.
I have read that imagemagick might be a little faster, can anyone give there experience or opinnions?