When resizing a good quality image(original width: 500, original height: 750) to a smaller size, the image isn't "smooth"(in lack of a better word). I uploaded one of the images so you can see for your self: http://img527.imageshack.us/img527/8308/11931456505c0c63670cqi1.jpg
I have tried to set the quality to 100, but it doesn't get any "smoother". The edges are still "ruff". Am I doing something wrong?
Here is the code I use:
$new_width="115";
$new_height="172";
$tsrc="$thumbimages_dir/$filename";
$add="$images_dir/$filename";
$im=ImageCreateFromJPEG($add);
$width=ImageSx($im);
$height=ImageSy($im);
$newimage=imagecreatetruecolor($new_width,$new_height);
imageCopyResized($newimage,$im,0,0,0,0,$new_width,$new_height,$width,$height);
ImageJpeg($newimage,$tsrc,80);