resimleri bu altta gördüğünüz kodlarla boyutlarını değiştiriyorum. fakat resimlerin boyutları değiştiğinde resmin renkleri karışıyor, kalite çok düşüyor. bunu nasil engellerim?
<?php 
// resize function 
function resize_jpg($img,$w,$h){ 
$thumb = imagecreate ($w, $h); 
$image = ImageCreateFromJpeg($img); 
$imagedata = getimagesize($img); 
imagecopyresized ($thumb, $image, 0, 0, 0, 0, $w, $h, $imagedata[0], $imagedata[1]); 
imagejpeg($thumb, $img); 
} 
// call resize function resize_jpg(image name, new width, new height) 
resize_jpg("amir.jpg",600,800); 
?>