srcimg=$a;
$this->scle=$b;
list($src_w $src_h)=getimagesize($this->srcimg);
$dst_w=ceil($src_w*$this->scle);
$dst_h=ceil($src_h*$this->scle);
$arr=explode(.$this->srcimg);
$ext=end($arr);
if($ext==jpg){
$src_img=imagecreatefromjpeg($this->srcimg);
}else if($ext==gif){
$src_img=imagecreatefromgif($this->srcimg);
}else if($ext==png){
$src_img=imagecreatefrompng($this->srcimg);
}else{
echo 请选择jpg、png、gif图片格式;
exit;
}
$dstimg=$arr[0].$this->scle._small...$ext;
$dst_img=imagecreatetruecolor($dst_w$dst_h);
imagecopyresampled($dst_img$src_img0000$dst_w$dst_h$src_w$src_h);
if($ext==jpg){
imagejpeg($dst_img$dstimg);
}else if($ext==gif){
imagegif($dst_img$dstimg);
}else if($ext==png){
imagepng($dst_img$dstimg);
}
imagedestroy($src_img);
imagedestroy($dst_img);
}
}
$image=imgs/a.jpg;
$b=1;
$i=new zoom($image$b);
?>