PHP实现图片压缩的两则实例
发布人:shili8
发布时间:2022-12-10 15:26
阅读次数:21
本文介绍了php实现图片压缩的两种方法,读者可以根据具体应用参考或加以改进,以适应自身应用需求!废话不多说,主要代码部分如下:
实例1:
<?php
/**
* desription 压缩图片
* @param sting $imgsrc 图片路径
* @param string $imgdst 压缩后保存路径
*/
function image_png_size_add($imgsrc,$imgdst){
list($width,$height,$type)=getimagesize($imgsrc);
$new_width = ($width>600?600:$width)*0.9;
$new_height =($height>600?600:$height)*0.9;
switch($type){
case 1:
$giftype=check_gifcartoon($imgsrc);
if($giftype){
header('content-type:image/gif');
$image_wp=imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromgif($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_wp, $imgdst,75);
imagedestroy($image_wp);
}
break;
case 2:
header('content-type:image/jpeg');
$image_wp=imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefromjpeg($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_wp, $imgdst,75);
imagedestroy($image_wp);
break;
case 3:
header('content-type:image/png');
$image_wp=imagecreatetruecolor($new_width, $new_height);
$image = imagecreatefrompng($imgsrc);
imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
imagejpeg($image_wp, $imgdst,75);
imagedestroy($image_wp);
break;
}
}
/**
* desription 判断是否gif动画
* @param sting $image_file图片路径
* @return boolean t 是 f 否
*/
function check_gifcartoon($image_file){
$fp = fopen($image_file,'rb');
$image_head = fread($fp,1024);
fclose($fp);
return preg_match("/".chr(0x21).chr(0xff).chr(0x0b).'netscape2.0'."/",$image_head)?false:true;
}
?>
实例2:
<?php
/*
----------------------------------------------------------------------
函数:调整图片尺寸或生成缩略图
返回:true/false
参数:
$image 需要调整的图片(含路径)
$dw=450 调整时最大宽度;缩略图时的绝对宽度
$dh=450 调整时最大高度;缩略图时的绝对高度
$type=1 1,调整尺寸; 2,生成缩略图
$path='img/';//路径
$phtypes=array(
'img/gif',
'img/jpg',
'img/jpeg',
'img/bmp',
'img/pjpeg',
'img/x-png'
);
function img($image,$dw=450,$dh=450,$type=1){
if(!file_exists($image)){
return false;
}
//如果需要生成缩略图,则将原图拷贝一下重新给$image赋值
if($type!=1){
copy($image,str_replace(".","_x.",$image));
$image=str_replace(".","_x.",$image);
}
//取得文件的类型,根据不同的类型建立不同的对象
$imginfo=getimagesize($image);
switch($imginfo[2]){
case 1:
$img = @imagecreatefromgif($image);
break;
case 2:
$img = @imagecreatefromjpeg($image);
break;
case 3:
$img = @imagecreatefrompng($image);
break;
}
//如果对象没有创建成功,则说明非图片文件
if(empty($img)){
//如果是生成缩略图的时候出错,则需要删掉已经复制的文件
if($type!=1){unlink($image);}
return false;
}
//如果是执行调整尺寸操作则
if($type==1){
$w=imagesx($img);
$h=imagesy($img);
$width = $w;
$height = $h;
if($width>$dw){
$par=$dw/$width;
$width=$dw;
$height=$height*$par;
if($height>$dh){
$par=$dh/$height;
$height=$dh;
$width=$width*$par;
}
}elseif($height>$dh){
$par=$dh/$height;
$height=$dh;
$width=$width*$par;
if($width>$dw){
$par=$dw/$width;
$width=$dw;
$height=$height*$par;
}
}else{
$width=$width;
$height=$height;
}
$nimg = imagecreatetruecolor($width,$height); //新建一个真彩色画布
imagecopyresampled($nimg,$img,0,0,0,0,$width,$height,$w,$h);//重采样拷贝部分图像并调整大小
imagejpeg ($nimg,$image); //以jpeg格式将图像输出到浏览器或文件
return true;
//如果是执行生成缩略图操作则
}else{
$w=imagesx($img);
$h=imagesy($img);
$width = $w;
$height = $h;
$nimg = imagecreatetruecolor($dw,$dh);
if($h/$w>$dh/$dw){ //高比较大
$width=$dw;
$height=$h*$dw/$w;
$intnh=$height-$dh;
imagecopyresampled($nimg, $img, 0, -$intnh/1.8, 0, 0, $dw, $height, $w, $h);
}else{ //宽比较大
$height=$dh;
$width=$w*$dh/$h;
$intnw=$width-$dw;
imagecopyresampled($nimg, $img, -$intnw/1.8, 0, 0, 0, $width, $dh, $w, $h);
}
imagejpeg ($nimg,$image);
return true;
}
}
?>
<html><body>
<form method="post" enctype="multipart/form-data" name="form1">
<table>
<tr><td>上传图片</td></tr>
<tr><td><input type="file" name="photo" size="20" /></td></tr>
<tr><td><input type="submit" value="上传"/></td></tr>
</table>
允许上传的文件类型为:<?=implode(', ',$phtypes)?></form>
<?php
if($_server['request_method']=='post'){
if (!is_uploaded_file($_files["photo"][tmp_name])){
echo "图片不存在";
exit();
}
if(!is_dir('img')){//路径若不存在则创建
mkdir('img');
}
$upfile=$_files["photo"];
$pinfo=pathinfo($upfile["name"]);
$name=$pinfo['basename'];//文件名
$tmp_name=$upfile["tmp_name"];
$file_type=$pinfo['extension'];//获得文件类型
$showphpath=$path.$name;
if(in_array($upfile["type"],$phtypes)){
echo "文件类型不符!";
exit();
}
if(move_uploaded_file($tmp_name,$path.$name)){
echo "成功!";
img($showphpath,100,800,2);
}
echo "<img src=\"".$showphpath."\" />";
}
?>
</body>
</html>

