| 
header("content-type:image/jpeg");$filename = hsdir.'/mljntc2p.jpg';
 $im = imagecreatefromjpeg($filename);
 $h=imagesy($im);//获得目标图片高度
 $new_img_width  = 257;
 $new_img_height = 522;
 $newim = imagecreate($new_img_width, $new_img_height);$white = imagecolorallocate($newim, 255,255,255); //设置背景颜色
 imagecopyresized($newim, $im, 0, 0, 0, 0, $new_img_width, $new_img_height, $new_img_width, $new_img_height);
 imagefilledrectangle($newim,0,$h,$new_img_width,$new_img_height,$white);
 //填充  目标图片高度作为起驶y坐标 以指定截取宽高为结束坐标
 imagejpeg($newim);
 imagedestroy($newim);
 imagedestroy($im);
 ?>
 |