Hi,
I am using these php functions for my jpg manipulation:
$new_im=imagecreatetruecolor ($new_width,$new_height);
ImageCopyResized($new_im,$im,0,0,0,0,$new_width,$new_height,$im_width,$im_height);
I have heard about ImageMagick and am wodering if it is worth installing. Currently, if I upload and scale a picture down to one half the size, I do see small jaggies. Is ImageMagick going to eliminate all jaggies, similar to resizing in a desktop graphics program? Also, how much disk space does ImageMagick take up? So, the last question is, is it worth it? Thanks for any feedback.