当前位置:首页 > PHP教程 > php图像处理 > 列表

php等比例生成缩略图程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-19 10:22:01 浏览: 评论:0 

这个程序很实用,但只是用来生成等比例生成缩略图,你要把文件上传到服务器,然后再由此函数来操作,有需要的朋友参考一下.

php等比例生成缩略图程序代码如下:

  1. function reSizeImg($imgSrc$resize_width$resize_height$isCut=false) { 
  2.  //图片的类型 
  3.  $type = substr ( strrchr ( $imgSrc"." ), 1 ); 
  4.  //初始化图象 
  5.  if ($type == "jpg") { 
  6.   $im = imagecreatefromjpeg ( $imgSrc ); 
  7.  } 
  8.  if ($type == "gif") { 
  9.   $im = imagecreatefromgif ( $imgSrc ); 
  10.  } 
  11.  if ($type == "png") { 
  12.   $im = imagecreatefrompng ( $imgSrc ); 
  13.  } 
  14.  //目标图象地址 
  15.  $full_length = strlen ( $imgSrc ); 
  16.  $type_length = strlen ( $type ); 
  17.  $name_length = $full_length - $type_length
  18.  $name = substr ( $imgSrc, 0, $name_length - 1 ); 
  19.  $dstimg = $name . "_s." . $type
  20.  
  21.  $width = imagesx ( $im ); 
  22.  $height = imagesy ( $im ); 
  23.  
  24.  //生成图象 
  25.  //改变后的图象的比例 
  26.  $resize_ratio = ($resize_width) / ($resize_height); 
  27.  //实际图象的比例 
  28.  $ratio = ($width) / ($height); 
  29.  if (($isCut) == 1) //裁图 
  30.   { 
  31.   if ($ratio >= $resize_ratio//高度优先 
  32.   { 
  33.    $newimg = imagecreatetruecolor ( $resize_width$resize_height ); 
  34.    imagecopyresampled ( $newimg$im, 0, 0, 0, 0, $resize_width$resize_height, (($height) * $resize_ratio), $height ); 
  35.    ImageJpeg ( $newimg$dstimg ); 
  36.   } 
  37.   if ($ratio < $resize_ratio//宽度优先 
  38.   { 
  39.    $newimg = imagecreatetruecolor ( $resize_width$resize_height ); 
  40.    imagecopyresampled ( $newimg$im, 0, 0, 0, 0, $resize_width$resize_height$width, (($width) / $resize_ratio) ); 
  41.    ImageJpeg ( $newimg$dstimg ); 
  42.   } 
  43.  } else //不裁图 
  44.  {//开源代码phpfensi.com 
  45.   if ($ratio >= $resize_ratio) { 
  46.    $newimg = imagecreatetruecolor ( $resize_width, ($resize_width) / $ratio ); 
  47.    imagecopyresampled ( $newimg$im, 0, 0, 0, 0, $resize_width, ($resize_width) / $ratio$width$height ); 
  48.    ImageJpeg ( $newimg$dstimg ); 
  49.   } 
  50.   if ($ratio < $resize_ratio) { 
  51.    $newimg = imagecreatetruecolor ( ($resize_height) * $ratio$resize_height ); 
  52.    imagecopyresampled ( $newimg$im, 0, 0, 0, 0, ($resize_height) * $ratio$resize_height$width$height ); 
  53.    ImageJpeg ( $newimg$dstimg ); 
  54.   } 
  55.  } 
  56.  ImageDestroy ( $im ); 

调用方法简单,直接reSizeImg就可以了,参考很简单.

Tags: php等比例 php缩略图程序

分享到:

相关文章