in the index.php file find this line:
ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext");
Change it to this:
ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext",100);
Basically this will save the resized image at 100% clarrity.
Let me know.