用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php等比例生成缩略图程序

时间:2015-01-23  来源:西部数据  作者:西部数据

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

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就可以了,参考很简单.

来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门