VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP自动生成缩略图函数的源码示例

今天小编就为大家分享一篇关于PHP自动生成缩略图函数的源码示例,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧。

一个简单但功能比较完善的自动生成缩略图的函数,可以按需要对图片进行缩放、裁切、锁定宽或高、使用空白填充

以下为源码,比较简单,相信很容易看明白,记得打开 GD 库的支持哦:

  1. <?php 
  2. /** 
  3.  * 生成缩略图 
  4.  * @param string   源图绝对完整地址{带文件名及后缀名} 
  5.  * @param string   目标图绝对完整地址{带文件名及后缀名} 
  6.  * @param int    缩略图宽{值设为0时目标高度不能为0,目标宽度为源图宽*(目标高度/源图高)} 
  7.  * @param int    缩略图高{值设为0时目标宽度不能为0,目标高度为源图高*(目标宽度/源图宽)} 
  8.  * @param int    是否裁切{宽,高必须非0} 
  9.  * @param int/float 缩放{0:不缩放, 0<this<1:缩放到相应比例(此时宽高限制和裁切均失效)} 
  10.  * @return boolean 
  11.  */ 
  12. function img2thumb($src_img$dst_img$width = 75, $height = 75, $cut = 0, $proportion = 0) 
  13.   if(!is_file($src_img)) 
  14.   { 
  15.     return false; 
  16.   } 
  17.   $ot = fileext($dst_img); 
  18.   $otfunc = 'image' . ($ot == 'jpg' ? 'jpeg' : $ot); 
  19.   $srcinfo = getimagesize($src_img); 
  20.   $src_w = $srcinfo[0]; 
  21.   $src_h = $srcinfo[1]; 
  22.   $type = strtolower(substr(image_type_to_extension($srcinfo[2]), 1)); 
  23.   $createfun = 'imagecreatefrom' . ($type == 'jpg' ? 'jpeg' : $type); 
  24.   $dst_h = $height
  25.   $dst_w = $width
  26.   $x = $y = 0; 
  27.   /** 
  28.    * 缩略图不超过源图尺寸(前提是宽或高只有一个) 
  29.    */ 
  30.   if(($width$src_w && $height$src_h) || ($height$src_h && $width == 0) || ($width$src_w && $height == 0)) 
  31.   { 
  32.     $proportion = 1; 
  33.   } 
  34.   if($width$src_w
  35.   { 
  36.     $dst_w = $width = $src_w
  37.   } 
  38.   if($height$src_h
  39.   { 
  40.     $dst_h = $height = $src_h
  41.   } 
  42.   if(!$width && !$height && !$proportion
  43.   { 
  44.     return false; 
  45.   } 
  46.   if(!$proportion
  47.   { 
  48.     if($cut == 0) 
  49.     { 
  50.       if($dst_w && $dst_h
  51.       { 
  52.         if($dst_w/$src_w$dst_h/$src_h
  53.         { 
  54.           $dst_w = $src_w * ($dst_h / $src_h); 
  55.           $x = 0 - ($dst_w - $width) / 2; 
  56.         } 
  57.         else 
  58.         { 
  59.           $dst_h = $src_h * ($dst_w / $src_w); 
  60.           $y = 0 - ($dst_h - $height) / 2; 
  61.         } 
  62.       } 
  63.       else if($dst_w xor $dst_h
  64.       { 
  65.         if($dst_w && !$dst_h//有宽无高 
  66.         { 
  67.           $propor = $dst_w / $src_w
  68.           $height = $dst_h = $src_h * $propor
  69.         } 
  70.         else if(!$dst_w && $dst_h//有高无宽 
  71.         { 
  72.           $propor = $dst_h / $src_h
  73.           $width = $dst_w = $src_w * $propor
  74.         } 
  75.       } 
  76.     } 
  77.     else 
  78.     { 
  79.       if(!$dst_h//裁剪时无高 
  80.       { 
  81.         $height = $dst_h = $dst_w
  82.       } 
  83.       if(!$dst_w//裁剪时无宽 
  84.       { 
  85.         $width = $dst_w = $dst_h
  86.       } 
  87.       $propor = min(max($dst_w / $src_w$dst_h / $src_h), 1); 
  88.       $dst_w = (int)round($src_w * $propor); 
  89.       $dst_h = (int)round($src_h * $propor); 
  90.       $x = ($width - $dst_w) / 2; 
  91.       $y = ($height - $dst_h) / 2; 
  92.     } 
  93.   } 
  94.   else 
  95.   { 
  96.     $proportion = min($proportion, 1); 
  97.     $height = $dst_h = $src_h * $proportion
  98.     $width = $dst_w = $src_w * $proportion
  99.   } 
  100.   $src = $createfun($src_img); 
  101.   $dst = imagecreatetruecolor($width ? $width : $dst_w$height ? $height : $dst_h); 
  102.   $white = imagecolorallocate($dst, 255, 255, 255); 
  103.   imagefill($dst, 0, 0, $white); 
  104.   if(function_exists('imagecopyresampled')) 
  105.   { 
  106.     imagecopyresampled($dst$src$x$y, 0, 0, $dst_w$dst_h$src_w$src_h); 
  107.   } 
  108.   else 
  109.   { 
  110.     imagecopyresized($dst$src$x$y, 0, 0, $dst_w$dst_h$src_w$src_h); 
  111.   } 
  112.   $otfunc($dst$dst_img); 
  113.   imagedestroy($dst); 
  114.   imagedestroy($src); 
  115.   return true; 
  116. function fileext($file
  117.   return pathinfo($file, PATHINFO_EXTENSION); 
  118. ?> 

使用示例:

  1. <?php 
  2. $src_img = "./test.jpg"//原图片完整路径和名称,带图片扩展名 
  3. $dst_img = "./test_thumb.jpg"//生成的缩略图存放的完整路径和名称 
  4. /* 生成宽300px,高200px的缩略图,不进行裁切,空白部分将会使用背景色填充 */ 
  5. $stat = img2thumb($src_img$dst_img$width = 300, $height = 200, $cut = 0, $proportion = 0); 
  6. if($stat){ 
  7.   echo 'Resize Image Success!<br />'
  8.   echo '<img src="'.$dst_img.'" />';   
  9. }else
  10.   echo 'Resize Image Fail!';  
  11. ?>
  12.  

原文链接:http://www.phpfensi.com/php/20211113/18532.html


相关教程