240){
$ox = 240; // �������ѹ���β�������
}else{$ox = $ix;}
$oy = ($ox * $iy) / $ix; // �������ѹ���νĥ�����
// �������ѹ���β����ǡ���������
$im_out = ImageCreateTrueColor($ox, $oy);
imagecopyresampled($im_out, $im_inp, 0, 0, 0, 0, $ox, $oy, $ix, $iy);
// ������ɽ��
header("Content-type: image/jpeg");
header("Cache-control: no-cache");
ImageJPEG($im_out);
// ������
ImageDestroy($im_inp);
ImageDestroy($im_out);
?>