Gracias compañero.
Lo puse asi pero siguen perdiendo mucha calidad las imagenes
Código PHP:
public function Generar_Thumbnails($rutaimagen,$rutathumbnails,$ancho,$alto){
//$arc="../imagenes/pel_47.jpg";
$fuente = @imagecreatefromjpeg($rutaimagen);
$imgAncho = imagesx ($fuente);
$imgAlto =imagesy($fuente);
$imagen = ImageCreate($ancho,$alto);
imagecopyresampled($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
//Header("Content-type: image/jpeg");
imageJpeg($imagen,$rutathumbnails,100);
//return $ruta;
}//end function
}//end class
Q mas se podria hacer?? G...