la imagen a la hora de mostrarla.
Como podria mejorar el thumbnail para q no pierda tanta calidad no importa si pesa
un poco mas.
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);
ImageCopyResized($imagen,$fuente,0,0,0,0,$ancho,$alto,$imgAncho,$imgAlto);
//Header("Content-type: image/jpeg");
imageJpeg($imagen,$rutathumbnails);
//return $ruta;
}//end function
}
Salu2.