class AutoImage{
private $image;
public function resize($src, $width, $height){
//$src 就是 $_FILES['upload_image_file']['tmp_name']
//$width和$height是指定的分辨率
//如果想按指定比例放縮,可以將$width和$height改為$src的指定比例
$this->image = $src;
$info = getimagesize($src);//獲取圖片的真實(shí)寬、高、類型
if($info[0] == $width $info[1] == $height){
//如果分辨率一樣,直接返回原圖
return $src;
}
switch ($info['mime']){
case 'image/jpeg':
header('Content-Type:image/jpeg');
$image_wp = imagecreatetruecolor($width, $height);
$image_src = imagecreatefromjpeg($src);
imagecopyresampled($image_wp, $image_src, 0, 0, 0, 0, $width, $height, $info[0], $info[1]);
imagedestroy($image_src);
imagejpeg($image_wp,$this->image);
break;
case 'image/png':
header('Content-Type:image/png');
$image_wp = imagecreatetruecolor($width, $height);
$image_src = imagecreatefrompng($src);
imagecopyresampled($image_wp, $image_src, 0, 0, 0, 0, $width, $height, $info[0], $info[1]);
imagedestroy($image_src);
imagejpeg($image_wp,$this->image);
break;
case 'image/gif':
header('Content-Type:image/gif');
$image_wp = imagecreatetruecolor($width, $height);
$image_src = imagecreatefromgif($src);
imagecopyresampled($image_wp, $image_src, 0, 0, 0, 0, $width, $height, $info[0], $info[1]);
imagedestroy($image_src);
imagejpeg($image_wp,$this->image);
break;
}
return $this->image;
}
}
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP數(shù)組(Array)操作技巧大全》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP數(shù)學(xué)運(yùn)算技巧總結(jié)》、《php字符串(string)用法總結(jié)》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》