VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php实现图片压缩处理

这篇文章主要为大家详细介绍了php实现图片压缩处理,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

本文实例为大家分享了php实现图片压缩处理的具体代码,供大家参考,具体内容如下

说明

在项目中,经常会遇到在前端页面展示用户自己上传的图片,当部分图片尺寸过大,页面图片过多的情况下(如论坛里需要显示用户头像),会引起页面加载缓慢的问题。由于用户图片已存储导数据库,无法改变库里的图片大小,只能在获取图片路径时,压缩图片。

示例

以下函数为图片压缩方法

  1. /** 
  2.  * 图片压缩处理 
  3.  * @param string $sFile 图片路径 
  4.  * @param int $iWidth 自定义图片宽度 
  5.  * @param int $iHeight 自定义图片高度 
  6.  */ 
  7. function getThumb($sFile,$iWidth,$iHeight){ 
  8.   //判断该图片是否存在 
  9.   if(!file_exists(public_path().$sFile)) return $sFile
  10.   //判断图片格式 
  11.   $attach_fileext = get_filetype($sFile); 
  12.   if (!in_array($attach_fileextarray('jpg','png','jpeg'))){ 
  13.     return $sFile
  14.   } 
  15.   //压缩图片 
  16.   $sFileNameS = str_replace(".".$attach_fileext"_".$iWidth.'_'.$iHeight.'.'.$attach_fileext$sFile); 
  17.   //判断是否已压缩图片,若是则返回压缩图片路径 
  18.   if(file_exists(public_path().$sFileNameS)){ 
  19.     return $sFileNameS
  20.   } 
  21.   //解决手机端上传图片被旋转问题 
  22.   if (in_array($attach_fileextarray('jpeg')) ){ 
  23.     adjustPicOrientation(public_path().$sFile); 
  24.   } 
  25.   //生成压缩图片,并存储到原图同路径下 
  26.   resizeImage(public_path().$sFile, public_path().$sFileNameS$iWidth$iHeight); 
  27.   if(!file_exists(public_path().$sFileNameS)){ 
  28.     return $sFile
  29.   } 
  30.   return $sFileNameS
  31.  
  32. /** 
  33.  *获取文件后缀名 
  34.  */ 
  35. function get_filetype($filename) { 
  36.   $extend = explode("." , $filename); 
  37.   return strtolower($extend[count($extend) - 1]); 
  38.  
  39. /** 
  40.  * 解决手机上传图片被旋转问题 
  41.  * @param string $full_filename 文件路径 
  42.  */ 
  43. function adjustPicOrientation($full_filename){ 
  44.   $exif = exif_read_data($full_filename); 
  45.   if($exif && isset($exif['Orientation'])) { 
  46.     $orientation = $exif['Orientation']; 
  47.     if($orientation != 1){ 
  48.       $img = imagecreatefromjpeg($full_filename); 
  49.  
  50.       $mirror = false; 
  51.       $deg  = 0; 
  52.  
  53.       switch ($orientation) { 
  54.         case 2: 
  55.           $mirror = true; 
  56.           break
  57.         case 3: 
  58.           $deg = 180; 
  59.           break
  60.         case 4: 
  61.           $deg = 180; 
  62.           $mirror = true; 
  63.           break
  64.         case 5: 
  65.           $deg = 270; 
  66.           $mirror = true; 
  67.           break
  68.         case 6: 
  69.           $deg = 270; 
  70.           break
  71.         case 7: 
  72.           $deg = 90; 
  73.           $mirror = true; 
  74.           break
  75.         case 8: 
  76.           $deg = 90; 
  77.           break
  78.       } 
  79.       if ($deg$img = imagerotate($img$deg, 0); 
  80.       if ($mirror$img = _mirrorImage($img); 
  81.       //$full_filename = str_replace('.jpg', "-O$orientation.jpg", $full_filename);新文件名 
  82.       imagejpeg($img$full_filename, 95); 
  83.     } 
  84.   } 
  85.   return $full_filename
  86.  
  87. resizeImage(public_path().$sFile, public_path().$sFileNameS$iWidth$iHeight); 
  88.  
  89. /** 
  90.  * 生成图片 
  91.  * @param string $im 源图片路径 
  92.  * @param string $dest 目标图片路径 
  93.  * @param int $maxwidth 生成图片宽 
  94.  * @param int $maxheight 生成图片高 
  95.  */ 
  96. function resizeImage($im$dest$maxwidth$maxheight) { 
  97.   $img = getimagesize($im); 
  98.   switch ($img[2]) { 
  99.     case 1: 
  100.       $im = @imagecreatefromgif($im); 
  101.       break
  102.     case 2: 
  103.       $im = @imagecreatefromjpeg($im); 
  104.       break
  105.     case 3: 
  106.       $im = @imagecreatefrompng($im); 
  107.       break
  108.   } 
  109.  
  110.   $pic_width = imagesx($im); 
  111.   $pic_height = imagesy($im); 
  112.   $resizewidth_tag = false; 
  113.   $resizeheight_tag = false; 
  114.   if (($maxwidth && $pic_width > $maxwidth) || ($maxheight && $pic_height > $maxheight)) { 
  115.     if ($maxwidth && $pic_width > $maxwidth) { 
  116.       $widthratio = $maxwidth / $pic_width
  117.       $resizewidth_tag = true; 
  118.     } 
  119.  
  120.     if ($maxheight && $pic_height > $maxheight) { 
  121.       $heightratio = $maxheight / $pic_height
  122.       $resizeheight_tag = true; 
  123.     } 
  124.  
  125.     if ($resizewidth_tag && $resizeheight_tag) { 
  126.       if ($widthratio < $heightratio
  127.         $ratio = $widthratio
  128.       else 
  129.         $ratio = $heightratio
  130.     } 
  131.  
  132.  
  133.     if ($resizewidth_tag && !$resizeheight_tag
  134.       $ratio = $widthratio
  135.     if ($resizeheight_tag && !$resizewidth_tag
  136.       $ratio = $heightratio
  137.     $newwidth = $pic_width * $ratio
  138.     $newheight = $pic_height * $ratio
  139.  
  140.     if (function_exists("imagecopyresampled")) { 
  141.       $newim = imagecreatetruecolor($newwidth$newheight); 
  142.       imagecopyresampled($newim$im, 0, 0, 0, 0, $newwidth$newheight$pic_width$pic_height); 
  143.     } else { 
  144.       $newim = imagecreate($newwidth$newheight); 
  145.       imagecopyresized($newim$im, 0, 0, 0, 0, $newwidth$newheight$pic_width$pic_height); 
  146.     } 
  147.  
  148.     imagejpeg($newim$dest); 
  149.     imagedestroy($newim); 
  150.   } else { 
  151.     imagejpeg($im$dest); 
  152.   } 
  153. }
  154.  



原文链接:http://www.phpfensi.com/php/20220326/20270.html


相关教程