一个经典实用的PHP图像处理类分享


Posted in PHP onNovember 18, 2014

本图像处理类可以完成对图片的缩放、加水印和裁剪的功能,支持多种图片类型的处理,缩放时进行优化等。

<?php
/**
 file: image.class.php 类名为Image
 图像处理类,可以完成对各种类型的图像进行缩放、加图片水印和剪裁的操作。
 */
class Image {
  /* 图片保存的路径 */
  private $path;
 
  /**
   * 实例图像对象时传递图像的一个路径,默认值是当前目录
   * @param  string $path  可以指定处理图片的路径
   */
  function __construct($path="./"){
    $this->path = rtrim($path,"/")."/";
  }
 
  /**
   * 对指定的图像进行缩放
   * @param  string $name  是需要处理的图片名称
   * @param  int $width   缩放后的宽度
   * @param  int $height   缩放后的高度
   * @param  string $qz   是新图片的前缀
   * @return mixed      是缩放后的图片名称,失败返回false;
   */
  function thumb($name, $width, $height,$qz="th_"){
    /* 获取图片宽度、高度、及类型信息 */
    $imgInfo = $this->getInfo($name);
    /* 获取背景图片的资源 */
    $srcImg = $this->getImg($name, $imgInfo);
    /* 获取新图片尺寸 */
    $size = $this->getNewSize($name,$width, $height,$imgInfo);
    /* 获取新的图片资源 */
    $newImg = $this->kidOfImage($srcImg, $size,$imgInfo);
    /* 通过本类的私有方法,保存缩略图并返回新缩略图的名称,以"th_"为前缀 */
    return $this->createNewImage($newImg, $qz.$name,$imgInfo);
  }
 
  /**
   * 为图片添加水印
   * @param  string $groundName 背景图片,即需要加水印的图片,暂只支持GIF,JPG,PNG格式
   * @param  string $waterName 图片水印,即作为水印的图片,暂只支持GIF,JPG,PNG格式
   * @param  int $waterPos    水印位置,有10种状态,0为随机位置;
   *                1为顶端居左,2为顶端居中,3为顶端居右;
   *                4为中部居左,5为中部居中,6为中部居右;
   *                7为底端居左,8为底端居中,9为底端居右;
   * @param  string $qz     加水印后的图片的文件名在原文件名前面加上这个前缀
   * @return  mixed        是生成水印后的图片名称,失败返回false
   */
  function waterMark($groundName, $waterName, $waterPos=0, $qz="wa_"){
    /*获取水印图片是当前路径,还是指定了路径*/
    $curpath = rtrim($this->path,"/")."/";
    $dir = dirname($waterName);
    if($dir == "."){
      $wpath = $curpath;
    }else{
      $wpath = $dir."/";
      $waterName = basename($waterName);
    }
 
    /*水印图片和背景图片必须都要存在*/
    if(file_exists($curpath.$groundName) && file_exists($wpath.$waterName)){
      $groundInfo = $this->getInfo($groundName);        //获取背景信息
      $waterInfo = $this->getInfo($waterName, $dir);      //获取水印图片信息
      /*如果背景比水印图片还小,就会被水印全部盖住*/
      if(!$pos = $this->position($groundInfo, $waterInfo, $waterPos)){
        echo '水印不应该比背景图片小!';
        return false;
      }
 
      $groundImg = $this->getImg($groundName, $groundInfo);  //获取背景图像资源
      $waterImg = $this->getImg($waterName, $waterInfo, $dir); //获取水印图片资源
 
      /* 调用私有方法将水印图像按指定位置复制到背景图片中 */
      $groundImg = $this->copyImage($groundImg, $waterImg, $pos, $waterInfo);
      /* 通过本类的私有方法,保存加水图片并返回新图片的名称,默认以"wa_"为前缀 */
      return $this->createNewImage($groundImg, $qz.$groundName, $groundInfo);
 
    }else{
      echo '图片或水印图片不存在!';
      return false;
    }
  }
 
  /**
   * 在一个大的背景图片中剪裁出指定区域的图片
   * @param  string $name  需要剪切的背景图片
   * @param  int $x     剪切图片左边开始的位置
   * @param  int $y     剪切图片顶部开始的位置
   * @param  int $width   图片剪裁的宽度
   * @param  int $height   图片剪裁的高度
   * @param  string $qz   新图片的名称前缀
   * @return  mixed      裁剪后的图片名称,失败返回false;
   */
  function cut($name, $x, $y, $width, $height, $qz="cu_"){
    $imgInfo=$this->getInfo($name);         //获取图片信息
    /* 裁剪的位置不能超出背景图片范围 */
    if( (($x+$width) > $imgInfo['width']) || (($y+$height) > $imgInfo['height'])){
      echo "裁剪的位置超出了背景图片范围!";
      return false;
    }
 
    $back = $this->getImg($name, $imgInfo);     //获取图片资源
    /* 创建一个可以保存裁剪后图片的资源 */
    $cutimg = imagecreatetruecolor($width, $height);
    /* 使用imagecopyresampled()函数对图片进行裁剪 */
    imagecopyresampled($cutimg, $back, 0, 0, $x, $y, $width, $height, $width, $height);
    imagedestroy($back);
    /* 通过本类的私有方法,保存剪切图并返回新图片的名称,默认以"cu_"为前缀 */
    return $this->createNewImage($cutimg, $qz.$name,$imgInfo);
  }
 
  /* 内部使用的私有方法,用来确定水印图片的位置 */
  private function position($groundInfo, $waterInfo, $waterPos){
    /* 需要加水印的图片的长度或宽度比水印还小,无法生成水印 */
    if( ($groundInfo["width"]<$waterInfo["width"]) || ($groundInfo["height"]<$waterInfo["height"]) ) {
      return false;
    }
    switch($waterPos) {
      case 1:     //1为顶端居左
        $posX = 0;
        $posY = 0;
        break;
      case 2:     //2为顶端居中
        $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2;
        $posY = 0;
        break;
      case 3:     //3为顶端居右
        $posX = $groundInfo["width"] - $waterInfo["width"];
        $posY = 0;
        break;
      case 4:     //4为中部居左
        $posX = 0;
        $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2;
        break;
      case 5:     //5为中部居中
        $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2;
        $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2;
        break;
      case 6:     //6为中部居右
        $posX = $groundInfo["width"] - $waterInfo["width"];
        $posY = ($groundInfo["height"] - $waterInfo["height"]) / 2;
        break;
      case 7:     //7为底端居左
        $posX = 0;
        $posY = $groundInfo["height"] - $waterInfo["height"];
        break;
      case 8:     //8为底端居中
        $posX = ($groundInfo["width"] - $waterInfo["width"]) / 2;
        $posY = $groundInfo["height"] - $waterInfo["height"];
        break;
      case 9:     //9为底端居右
        $posX = $groundInfo["width"] - $waterInfo["width"];
        $posY = $groundInfo["height"] - $waterInfo["height"];
        break;
      case 0:
      default:    //随机
        $posX = rand(0,($groundInfo["width"] - $waterInfo["width"]));
        $posY = rand(0,($groundInfo["height"] - $waterInfo["height"]));
        break;
    }
    return array("posX"=>$posX, "posY"=>$posY);
  }
 
  /* 内部使用的私有方法,用于获取图片的属性信息(宽度、高度和类型) */
  private function getInfo($name, $path=".") {
    $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/';
 
    $data = getimagesize($spath.$name);
    $imgInfo["width"]  = $data[0];
    $imgInfo["height"] = $data[1];
    $imgInfo["type"]  = $data[2];
 
    return $imgInfo;
  }
 
  /*内部使用的私有方法, 用于创建支持各种图片格式(jpg,gif,png三种)资源 */
  private function getImg($name, $imgInfo, $path='.'){
 
    $spath = $path=="." ? rtrim($this->path,"/")."/" : $path.'/';
    $srcPic = $spath.$name;
 
    switch ($imgInfo["type"]) {
      case 1:         //gif
        $img = imagecreatefromgif($srcPic);
        break;
      case 2:         //jpg
        $img = imagecreatefromjpeg($srcPic);
        break;
      case 3:         //png
        $img = imagecreatefrompng($srcPic);
        break;
      default:
        return false;
        break;
    }
    return $img;
  }
 
  /* 内部使用的私有方法,返回等比例缩放的图片宽度和高度,如果原图比缩放后的还小保持不变 */
  private function getNewSize($name, $width, $height, $imgInfo){
    $size["width"] = $imgInfo["width"];     //原图片的宽度
    $size["height"] = $imgInfo["height"];    //原图片的高度
 
    if($width < $imgInfo["width"]){
      $size["width"]=$width;          //缩放的宽度如果比原图小才重新设置宽度
    }
 
    if($height < $imgInfo["height"]){
      $size["height"] = $height;        //缩放的高度如果比原图小才重新设置高度
    }
    /* 等比例缩放的算法 */
    if($imgInfo["width"]*$size["width"] > $imgInfo["height"] * $size["height"]){
      $size["height"] = round($imgInfo["height"]*$size["width"]/$imgInfo["width"]);
    }else{
      $size["width"] = round($imgInfo["width"]*$size["height"]/$imgInfo["height"]);
    }
 
    return $size;
  }
 
  /* 内部使用的私有方法,用于保存图像,并保留原有图片格式 */
  private function createNewImage($newImg, $newName, $imgInfo){
    $this->path = rtrim($this->path,"/")."/";
    switch ($imgInfo["type"]) {
      case 1:       //gif
        $result = imageGIF($newImg, $this->path.$newName);
        break;
      case 2:       //jpg
        $result = imageJPEG($newImg,$this->path.$newName);
        break;
      case 3:       //png
        $result = imagePng($newImg, $this->path.$newName);
        break;
    }
    imagedestroy($newImg);
    return $newName;
  }
 
  /* 内部使用的私有方法,用于加水印时复制图像 */
  private function copyImage($groundImg, $waterImg, $pos, $waterInfo){
    imagecopy($groundImg, $waterImg, $pos["posX"], $pos["posY"], 0, 0, $waterInfo["width"],$waterInfo["height"]);
    imagedestroy($waterImg);
    return $groundImg;
  }
 
  /* 内部使用的私有方法,处理带有透明度的图片保持原样 */
  private function kidOfImage($srcImg, $size, $imgInfo){
    $newImg = imagecreatetruecolor($size["width"], $size["height"]);
    $otsc = imagecolortransparent($srcImg);
    if( $otsc >= 0 && $otsc < imagecolorstotal($srcImg)) {
      $transparentcolor = imagecolorsforindex( $srcImg, $otsc );
      $newtransparentcolor = imagecolorallocate(
      $newImg,
      $transparentcolor['red'],
      $transparentcolor['green'],
      $transparentcolor['blue']
      );
      imagefill( $newImg, 0, 0, $newtransparentcolor );
      imagecolortransparent( $newImg, $newtransparentcolor );
    }
    imagecopyresized( $newImg, $srcImg, 0, 0, 0, 0, $size["width"], $size["height"], $imgInfo["width"], $imgInfo["height"] );
    imagedestroy($srcImg);
    return $newImg;
  }
}
PHP 相关文章推荐
PHP中的strtr函数使用介绍(str_replace)
Oct 20 PHP
PHP中使用mktime获取时间戳的一个黑色幽默分析
May 31 PHP
PHP 读取Postgresql中的数组
Apr 14 PHP
使用dump函数,给php加断点测试
Jun 25 PHP
19个超实用的PHP代码片段
Mar 14 PHP
php+mysqli实现批量替换数据库表前缀的方法
Dec 29 PHP
php简单实现快速排序的方法
Apr 04 PHP
PHP基于GD库实现的生成图片缩略图函数示例
Jul 05 PHP
PHP实现的各类hash算法长度及性能测试实例
Aug 27 PHP
PHP简单实现模拟登陆功能示例
Sep 15 PHP
PHP实现断点续传乱序合并文件的方法
Sep 06 PHP
基于PHP实现微信小程序客服消息功能
Aug 12 PHP
PHP中一些可以替代正则表达式函数的字符串操作函数
Nov 17 #PHP
PHP向浏览器输出内容的4个函数总结
Nov 17 #PHP
PHP中使用匿名函数操作数据库的例子
Nov 17 #PHP
PHP中定义数组常量(array常量)的方法
Nov 17 #PHP
php中addslashes函数与sql防注入
Nov 17 #PHP
php数组排序usort、uksort与sort函数用法
Nov 17 #PHP
php中current、next与reset函数用法实例
Nov 17 #PHP
You might like
解析dedeCMS验证码的实现代码
2013/06/07 PHP
PHP中模拟处理HTTP PUT请求的例子
2014/07/22 PHP
phpnow php探针环境检测代码
2014/11/04 PHP
PHP配置把错误日志以邮件方式发送方法(Windows系统)
2015/06/23 PHP
如何使用GDB调试PHP程序
2015/12/08 PHP
Yii视图操作之自定义分页实现方法
2016/07/14 PHP
php封装的page分页类完整实例
2016/10/18 PHP
Query中click(),bind(),live(),delegate()的区别
2013/11/19 Javascript
jquery根据name属性查找的小例子
2013/11/21 Javascript
JavaScript实现数组随机排序的方法
2015/06/26 Javascript
原生javascript实现分享到朋友圈功能 支持ios和android
2016/05/11 Javascript
Angular.Js的自动化测试详解
2016/12/09 Javascript
JS实现购物车特效
2017/02/02 Javascript
基于JavaScript实现图片连播和联级菜单实例代码
2017/07/28 Javascript
vue2.0 datepicker使用方法
2018/02/04 Javascript
解决angularjs WdatePicker ng-model的问题
2018/09/13 Javascript
three.js搭建室内场景教程
2018/12/30 Javascript
vue中@change兼容问题详解
2019/10/25 Javascript
react quill中图片上传由默认转成base64改成上传到服务器的方法
2019/10/30 Javascript
JS面向对象之多选框实现
2020/01/17 Javascript
微信小程序文章详情功能完整实例
2020/06/03 Javascript
JS实现超级好看的鼠标小尾巴特效
2020/12/01 Javascript
Python实现向QQ群成员自动发邮件的方法
2014/11/19 Python
python统计cpu利用率的方法
2015/06/02 Python
用Python的Django框架来制作一个RSS阅读器
2015/07/22 Python
python实现黑客字幕雨效果
2018/06/21 Python
python实现RabbitMQ的消息队列的示例代码
2018/11/08 Python
基于python计算滚动方差(标准差)talib和pd.rolling函数差异详解
2020/06/08 Python
CSS实现雨滴动画效果的实例代码
2019/10/08 HTML / CSS
设计师珠宝:Ylang 23
2018/05/11 全球购物
Herve Leger官网:标志性绷带连衣裙等
2018/12/26 全球购物
C语言笔试题
2014/09/04 面试题
《守株待兔》教学反思
2014/03/01 职场文书
小学校长先进事迹材料
2014/05/13 职场文书
财务会计实训报告
2014/11/05 职场文书
gateway网关接口请求的校验方式
2021/07/15 Java/Android