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, $img, 0, 0, 0, 0, $mx, $my, $bx, $by);
imagejpeg($im,"../../galeria/fotos/".$dir."/".$i."_c.jpg",40);
imagedestroy($im);