Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/06/2003, 17:47
emip
 
Fecha de Ingreso: noviembre-2002
Mensajes: 33
Antigüedad: 21 años, 5 meses
Puntos: 0
muchas gracias por su ayuda.... finalmente funcionó con estos comandos
Código PHP:
$img imagecreatefromjpeg("../../galeria/fotos/".$dir."/".$i.".jpg");
$bx=imagesx($img); $by=imagesy($img);
$my=76$mx=intval($my*$bx/$by);

$im=imagecreatetruecolor($mx,$my);
imagecopyresampled ($im$img0000$mx$my$bx$by);
imagejpeg($im,"../../galeria/fotos/".$dir."/".$i."_c.jpg",40);
imagedestroy($im);