图片压缩之三(php实现)

  1. <?php    
  2.   
  3.     $pic_name=date("dMYHis");    
  4.   
  5.     // 生成图片的宽度    
  6.     $pic_width=$_POST['width'];   
  7.   
  8.     // 生成图片的高度    
  9.     $pic_height=$_POST['length'];    
  10.   
  11.     function ResizeImage($im,$maxwidth,$maxheight,$name){    
  12.         //取得当前图片大小   
  13.         $width = imagesx($im);    
  14.         $height = imagesy($im);    
  15.         //生成缩略图的大小   
  16.         if(($width > $maxwidth) || ($height > $maxheight)){    
  17.             $widthratio = $maxwidth/$width;        
  18.             $heightratio = $maxheight/$height;     
  19.             if($widthratio < $heightratio){    
  20.                 $ratio = $widthratio;    
  21.             }else{    
  22.                 $ratio = $heightratio;    
  23.             }    
  24.             $newwidth = $width * $ratio;    
  25.             $newheight = $height * $ratio;    
  26.            
  27.             if(function_exists("imagecopyresampled")){    
  28.                 $newim = imagecreatetruecolor($newwidth, $newheight);    
  29.                 imagecopyresampled($newim, $im, 0000, $newwidth, $newheight, $width, $height);    
  30.             }else{    
  31.                 $newim = imagecreate($newwidth, $newheight);    
  32.                 imagecopyresized($newim, $im, 0000, $newwidth, $newheight, $width, $height);    
  33.             }    
  34.             ImageJpeg ($newim,$name . ".jpg");    
  35.             ImageDestroy ($newim);    
  36.         }else{    
  37.             ImageJpeg ($im,$name . ".jpg");    
  38.         }    
  39.     }    
  40.   
  41.     if($_FILES['image']['size']){    
  42.         //echo $_FILES['image']['type'];   
  43.         if($_FILES['image']['type'] == "image/pjpeg"||$_FILES['image']['type'] == "image/jpg"||$_FILES['image']['type'] == "image/jpeg"){    
  44.             $im = imagecreatefromjpeg($_FILES['image']['tmp_name']);    
  45.         }elseif($_FILES['image']['type'] == "image/x-png"){    
  46.             $im = imagecreatefrompng($_FILES['image']['tmp_name']);    
  47.         }elseif($_FILES['image']['type'] == "image/gif"){    
  48.             $im = imagecreatefromgif($_FILES['image']['tmp_name']);    
  49.         }   
  50.         if($im){    
  51.             if(file_exists($pic_name.'.jpg')){    
  52.                 unlink($pic_name.'.jpg');    
  53.             }    
  54.             ResizeImage($im,$pic_width,$pic_height,$pic_name);    
  55.             ImageDestroy ($im);    
  56.         }    
  57.     }    
  58. ?>    
  59.   
  60. <img src="<? echo $pic_name.'.jpg'; ?>"><br><br>    
  61. <form enctype="multipart/form-data" method="post" action="small_picture.php">    
  62. <br>    
  63. <input type="file" name="image" size="50" value="浏览"><p>    
  64. 生成缩略图宽度:<input type="text" name="width" size="5"><p>   
  65. 生成缩略图长度:<input type="text" name="length" size="5"><p>   
  66. <input type="submit" value="上传图片">    
  67. </form>   

你可能感兴趣的:(PHP)