常用的php图片处理类(水印、等比缩放、固定高宽)分享

常用的php图片处理类(水印、等比缩放、固定高宽)分享

<?php
//PHP 添加水印 & 比例缩略图 & 固定高度 & 固定宽度 类。
class Image_process{
  public $source; //原图
  public $source_width;  //原图宽度
  public $source_height; //原图高度
  public $source_type_id;
  public $orign_name;
  public $orign_dirname; 

  //传入原图路径
  public function __construct($source){
    $this->typeList = array(1=>'gif',2=>'jpg',3=>'png');
    $ginfo = getimagesize($source);
    $this->source_width = $ginfo[0];
    $this->source_height = $ginfo[1];
    $this->source_type_id = $ginfo[2];
    $this->orign_url = $source;
    $this->orign_name = basename($source);
    $this->orign_dirname = dirname($source);
  } 

  //判断图片的文件的格式,返回PHP可识别的编码
  public function judgeType($type,$source){
    if($type == 1){
      return imagecreatefromgif($source); //gif
    }else if($type == 2){
      return imagecreatefromjpeg($source); //jpg
    }else if($type == 3){
      return imagecreatefrompng($source); //png
    }else{
      return false;
    }
  } 

  //生成水印图片
  public function waterMakeImage($logo){
    $linfo = getimagesize($logo);
    $logo_width = $linfo[0];
    $logo_height = $linfo[1];
    $logo_type_id = $linfo[2];
    $sourceHandle = $this->judgeType($this->source_type_id,$this->orign_url);
    $logoHandle = $this->judgeType($logo_type_id,$logo);
    if(!$sourceHandle || !$logoHandle){
      return false;
    }
    $x = ($this->source_width - $logo_width)/2;
    $y = ($this->source_height - $logo_height)/2;
    imagecopy($sourceHandle,$logoHandle,$x,$y,0,0,$logo_width,$logo_height);
    $newPic = $this->orign_dirname.'\water_'.time().'.'.$this->typeList[$this->source_type_id];
    if($this->saveImage($sourceHandle,$newPic)){
      imagedestroy($sourceHandle);
      imagedestroy($logoHandle);
    }
  } 

  //固定高度宽度
  public function fixSizeImage($width,$height){
    if($width > $this->source_width) $this->source_width;
    if($height > $this->source_height) $this->source_height;
    if($width === false){
      $width = floor($this->source_width / ($this->source_height / $height));
    }
    if($height === false){
      $height = floor($this->source_height / ($this->source_width / $width));
    }
    $this->tinyImage($width,$height);
  } 

  //等比例缩放图片
  public function scaleImage($scale){
    $width = floor($this->source_width * $scale);
    $height = floor($this->source_height * $scale);
    $this->tinyImage($width, $height);
  } 

  //创建缩略图
  public function tinyImage($width,$height){
    $tinyImage = imagecreatetruecolor($width,$height);
    $handle = $this->judgeType($this->source_type_id,$this->orign_url);
    if(function_exists('imagecopyresampled')){
      imagecopyresampled($tinyImage, $handle, 0, 0, 0, 0, $width, $height, $this->source_width, $this->source_height);
    }else{
      imagecopyresized($tinyImage, $handle, 0, 0, 0, 0, $width, $height, $this->source_width, $this->source_height);
    }
    $newPic = $this->orign_dirname.'\thumb_'.time().'_'.$width."_".$height.".".$this->typeList[$this->source_type_id];
    if($this->saveImage($tinyImage,$newPic)){
      imagedestroy($tinyImage);
      imagedestroy($handle);
    }
  }
  //保存图片
  private function saveImage($image,$url){
    if(imagejpeg($image,$url)){
      return true;
    }
  }
}
$imgHandle = new Image_process('D:\AppServ\www\test\getimg\14061907445601.jpg');
//$imgHandle->waterMakeImage('D:\AppServ\www\test\getimg\shougongke.png');  //生成水印图片
//$imgHandle->fixSizeImage(200,150); //固定长度图片
$imgHandle->scaleImage(0.2); //等比例缩放
?>

示例二:

<?php
/**
 *
 * 图像处理类
 * @author FC_LAMP
 * @internal功能包含:水印,缩略图
 */
class Img
{
 //图片格式
 private $exts = array ('jpg', 'jpeg', 'gif', 'bmp', 'png' );

 /**
 *
 *
 * @throws Exception
 */
 public function __construct()
 {
 if (! function_exists ( 'gd_info' ))
 {
  throw new Exception ( '加载GD库失败!' );
 }
 }

 /**
 *
 * 裁剪压缩
 * @param $src_img 图片
 * @param $save_img 生成后的图片
 * @param $option 参数选项,包括: $maxwidth 宽 $maxheight 高
 * array('width'=>xx,'height'=>xxx)
 * @internal
 * 我们一般的压缩图片方法,在图片过长或过宽时生成的图片
 * 都会被“压扁”,针对这个应采用先裁剪后按比例压缩的方法
 */
 public function thumb_img($src_img, $save_img = '', $option)
 {

 if (empty ( $option ['width'] ) or empty ( $option ['height'] ))
 {
  return array ('flag' => False, 'msg' => '原图长度与宽度不能小于0' );
 }
 $org_ext = $this->is_img ( $src_img );
 if (! $org_ext ['flag'])
 {
  return $org_ext;
 }

 //如果有保存路径,则确定路径是否正确
 if (! empty ( $save_img ))
 {
  $f = $this->check_dir ( $save_img );
  if (! $f ['flag'])
  {
  return $f;
  }
 }

 //获取出相应的方法
 $org_funcs = $this->get_img_funcs ( $org_ext ['msg'] );

 //获取原大小
 $source = $org_funcs ['create_func'] ( $src_img );
 $src_w = imagesx ( $source );
 $src_h = imagesy ( $source );

 //调整原始图像(保持图片原形状裁剪图像)
 $dst_scale = $option ['height'] / $option ['width']; //目标图像长宽比
 $src_scale = $src_h / $src_w; // 原图长宽比
 if ($src_scale >= $dst_scale)
 { // 过高
  $w = intval ( $src_w );
  $h = intval ( $dst_scale * $w );

  $x = 0;
  $y = ($src_h - $h) / 3;
 } else
 { // 过宽
  $h = intval ( $src_h );
  $w = intval ( $h / $dst_scale );

  $x = ($src_w - $w) / 2;
  $y = 0;
 }
 // 剪裁
 $croped = imagecreatetruecolor ( $w, $h );
 imagecopy ( $croped, $source, 0, 0, $x, $y, $src_w, $src_h );
 // 缩放
 $scale = $option ['width'] / $w;
 $target = imagecreatetruecolor ( $option ['width'], $option ['height'] );
 $final_w = intval ( $w * $scale );
 $final_h = intval ( $h * $scale );
 imagecopyresampled ( $target, $croped, 0, 0, 0, 0, $final_w, $final_h, $w, $h );
 imagedestroy ( $croped );

 //输出(保存)图片
 if (! empty ( $save_img ))
 {

  $org_funcs ['save_func'] ( $target, $save_img );
 } else
 {
  header ( $org_funcs ['header'] );
  $org_funcs ['save_func'] ( $target );
 }
 imagedestroy ( $target );
 return array ('flag' => True, 'msg' => '' );
 }

 /**
 *
 * 等比例缩放图像
 * @param $src_img 原图片
 * @param $save_img 需要保存的地方
 * @param $option 参数设置 array('width'=>xx,'height'=>xxx)
 *
 */
 function resize_image($src_img, $save_img = '', $option)
 {
 $org_ext = $this->is_img ( $src_img );
 if (! $org_ext ['flag'])
 {
  return $org_ext;
 }

 //如果有保存路径,则确定路径是否正确
 if (! empty ( $save_img ))
 {
  $f = $this->check_dir ( $save_img );
  if (! $f ['flag'])
  {
  return $f;
  }
 }

 //获取出相应的方法
 $org_funcs = $this->get_img_funcs ( $org_ext ['msg'] );

 //获取原大小
 $source = $org_funcs ['create_func'] ( $src_img );
 $src_w = imagesx ( $source );
 $src_h = imagesy ( $source );

 if (($option ['width'] && $src_w > $option ['width']) || ($option ['height'] && $src_h > $option ['height']))
 {
  if ($option ['width'] && $src_w > $option ['width'])
  {
  $widthratio = $option ['width'] / $src_w;
  $resizewidth_tag = true;
  }

  if ($option ['height'] && $src_h > $option ['height'])
  {
  $heightratio = $option ['height'] / $src_h;
  $resizeheight_tag = true;
  }

  if ($resizewidth_tag && $resizeheight_tag)
  {
  if ($widthratio < $heightratio)
   $ratio = $widthratio;
  else
   $ratio = $heightratio;
  }

  if ($resizewidth_tag && ! $resizeheight_tag)
  $ratio = $widthratio;
  if ($resizeheight_tag && ! $resizewidth_tag)
  $ratio = $heightratio;

  $newwidth = $src_w * $ratio;
  $newheight = $src_h * $ratio;

  if (function_exists ( "imagecopyresampled" ))
  {
  $newim = imagecreatetruecolor ( $newwidth, $newheight );
  imagecopyresampled ( $newim, $source, 0, 0, 0, 0, $newwidth, $newheight, $src_w, $src_h );
  } else
  {
  $newim = imagecreate ( $newwidth, $newheight );
  imagecopyresized ( $newim, $source, 0, 0, 0, 0, $newwidth, $newheight, $src_w, $src_h );
  }
 }
 //输出(保存)图片
 if (! empty ( $save_img ))
 {

  $org_funcs ['save_func'] ( $newim, $save_img );
 } else
 {
  header ( $org_funcs ['header'] );
  $org_funcs ['save_func'] ( $newim );
 }
 imagedestroy ( $newim );
 return array ('flag' => True, 'msg' => '' );
 }

 /**
 *
 * 生成水印图片
 * @param $org_img 原图像
 * @param $mark_img 水印标记图像
 * @param $save_img 当其目录不存在时,会试着创建目录
 * @param array $option 为水印的一些基本设置包含:
 * x:水印的水平位置,默认为减去水印图宽度后的值
 * y:水印的垂直位置,默认为减去水印图高度后的值
 * alpha:alpha值(控制透明度),默认为50
 */
 public function water_mark($org_img, $mark_img, $save_img = '', $option = array())
 {
 //检查图片
 $org_ext = $this->is_img ( $org_img );
 if (! $org_ext ['flag'])
 {
  return $org_ext;
 }
 $mark_ext = $this->is_img ( $mark_img );
 if (! $mark_ext ['flag'])
 {
  return $mark_ext;
 }
 //如果有保存路径,则确定路径是否正确
 if (! empty ( $save_img ))
 {
  $f = $this->check_dir ( $save_img );
  if (! $f ['flag'])
  {
  return $f;
  }
 }

 //获取相应画布
 $org_funcs = $this->get_img_funcs ( $org_ext ['msg'] );
 $org_img_im = $org_funcs ['create_func'] ( $org_img );

 $mark_funcs = $this->get_img_funcs ( $mark_ext ['msg'] );
 $mark_img_im = $mark_funcs ['create_func'] ( $mark_img );

 //拷贝水印图片坐标
 $mark_img_im_x = 0;
 $mark_img_im_y = 0;
 //拷贝水印图片高宽
 $mark_img_w = imagesx ( $mark_img_im );
 $mark_img_h = imagesy ( $mark_img_im );

 $org_img_w = imagesx ( $org_img_im );
 $org_img_h = imagesx ( $org_img_im );

 //合成生成点坐标
 $x = $org_img_w - $mark_img_w;
 $org_img_im_x = isset ( $option ['x'] ) ? $option ['x'] : $x;
 $org_img_im_x = ($org_img_im_x > $org_img_w or $org_img_im_x < 0) ? $x : $org_img_im_x;
 $y = $org_img_h - $mark_img_h;
 $org_img_im_y = isset ( $option ['y'] ) ? $option ['y'] : $y;
 $org_img_im_y = ($org_img_im_y > $org_img_h or $org_img_im_y < 0) ? $y : $org_img_im_y;

 //alpha
 $alpha = isset ( $option ['alpha'] ) ? $option ['alpha'] : 50;
 $alpha = ($alpha > 100 or $alpha < 0) ? 50 : $alpha;

 //合并图片
 imagecopymerge ( $org_img_im, $mark_img_im, $org_img_im_x, $org_img_im_y, $mark_img_im_x, $mark_img_im_y, $mark_img_w, $mark_img_h, $alpha );

 //输出(保存)图片
 if (! empty ( $save_img ))
 {

  $org_funcs ['save_func'] ( $org_img_im, $save_img );
 } else
 {
  header ( $org_funcs ['header'] );
  $org_funcs ['save_func'] ( $org_img_im );
 }
 //销毁画布
 imagedestroy ( $org_img_im );
 imagedestroy ( $mark_img_im );
 return array ('flag' => True, 'msg' => '' );

 }

 /**
 *
 * 检查图片
 * @param unknown_type $img_path
 * @return array('flag'=>true/false,'msg'=>ext/错误信息)
 */
 private function is_img($img_path)
 {
 if (! file_exists ( $img_path ))
 {
  return array ('flag' => False, 'msg' => "加载图片 $img_path 失败!" );
 }
 $ext = explode ( '.', $img_path );
 $ext = strtolower ( end ( $ext ) );
 if (! in_array ( $ext, $this->exts ))
 {
  return array ('flag' => False, 'msg' => "图片 $img_path 格式不正确!" );
 }
 return array ('flag' => True, 'msg' => $ext );
 }

 /**
 *
 * 返回正确的图片函数
 * @param unknown_type $ext
 */
 private function get_img_funcs($ext)
 {
 //选择
 switch ($ext)
 {
  case 'jpg' :
  $header = 'Content-Type:image/jpeg';
  $createfunc = 'imagecreatefromjpeg';
  $savefunc = 'imagejpeg';
  break;
  case 'jpeg' :
  $header = 'Content-Type:image/jpeg';
  $createfunc = 'imagecreatefromjpeg';
  $savefunc = 'imagejpeg';
  break;
  case 'gif' :
  $header = 'Content-Type:image/gif';
  $createfunc = 'imagecreatefromgif';
  $savefunc = 'imagegif';
  break;
  case 'bmp' :
  $header = 'Content-Type:image/bmp';
  $createfunc = 'imagecreatefrombmp';
  $savefunc = 'imagebmp';
  break;
  default :
  $header = 'Content-Type:image/png';
  $createfunc = 'imagecreatefrompng';
  $savefunc = 'imagepng';
 }
 return array ('save_func' => $savefunc, 'create_func' => $createfunc, 'header' => $header );
 }

 /**
 *
 * 检查并试着创建目录
 * @param $save_img
 */
 private function check_dir($save_img)
 {
 $dir = dirname ( $save_img );
 if (! is_dir ( $dir ))
 {
  if (! mkdir ( $dir, 0777, true ))
  {
  return array ('flag' => False, 'msg' => "图片保存目录 $dir 无法创建!" );
  }
 }
 return array ('flag' => True, 'msg' => '' );
 }
}

if (! empty ( $_FILES ['test'] ['tmp_name'] ))
{
 //例子
 $img = new Img ();
 //原图
 $name = explode ( '.', $_FILES ['test'] ['name'] );
 $org_img = 'D:/test.' . end ( $name );
 move_uploaded_file ( $_FILES ['test'] ['tmp_name'], $org_img );
 $option = array ('width' => $_POST ['width'], 'height' => $_POST ['height'] );
 if ($_POST ['type'] == 1)
 {
 $s = $img->resize_image ( $org_img, '', $option );
 } else
 {
 $img->thumb_img ( $org_img, '', $option );
 }
 unlink ( $org_img );
}

以上所述就是本文的全部内容了,希望大家能够喜欢。

(0)

相关推荐

  • PHPThumb图片处理实例

    下载地址(github.com/masterexploder/PHPThumb).注意这个类库有一个重名的叫phpThumb,只是大小写的差别,所以查找文档的时候千万注意.在网站建设过程中,需要处理图片的地方多不胜数,用PHP的图片函数处理图片,十分繁琐.而且对新手来讲十分不好掌握.现在我们可以用PHPThumb类库来处理图片,包括,图片尺寸调整,图片截取,图片加水印,图片旋转等等功能. 使用演示: 复制代码 代码如下: //加载类库文件require_once 'path/to/ThumbLi

  • php多功能图片处理类分享(php图片缩放类)

    复制代码 代码如下: <?php    /**   *  基本图片处理,用于完成图片缩入,水印添加   *  当水印图超过目标图片尺寸时,水印图能自动适应目标图片而缩小   *  水印图可以设置跟背景的合并度  */ /*   使用方法:       自动裁切:       程序会按照图片的尺寸从中部裁切最大的正方形,并按目标尺寸进行缩略 $t--->setSrcImg("img/test.jpg");       $t->setCutType(1);//这一句就OK

  • php图片处理函数获取类型及扩展名实例

    本文实例讲述了php图片处理函数获取类型及扩展名的方法.分享给大家供大家参考. 具体实现代码如下: 复制代码 代码如下: image_type=image_type_to_mime_type(imagetype_png);   //获取png的mime类型 echo $image_type;           //输出结果 //   $file = '1.jpg'; $image = imagecreatefromjpeg($file); header('content-type: ' . i

  • PHP图片处理之使用imagecopyresampled函数裁剪图片例子

    图片裁剪是指在一个大的背景图片中裁剪出一张指定区域的图片,常见的应用是在用户设置个人头像时,可以从上传的图片中,裁剪出一个合适的区域作为自己的个人头像图片.图像裁剪和图片缩放的相似,所以也是借助imagecopyresampled()函数去实现这个功能.同样也是以JPEG图片格式为例,声明一个图像裁剪函数cut(),代码如下所示: 复制代码 代码如下: <?php     //在一个大的背景图片中裁剪出指定区域的图片,以jpeg图片格式为例     function cut($filename,

  • php图片处理:加水印、缩略图的实现(自定义函数:watermark、thumbnail)

    废话不说了,贴代码: 复制代码 代码如下: <?php /************************************ //函数: watermark($bigimg, $smallimg, $coord = 1) //作用: 添加水印 //参数: $bigimg 必选.大图片--要加上水印的图片 $smallimg 必选.小图片 $coord 可选.水印在大图中的位置, 1 左上角: 2 右上角: 3 右下角: 4 左下角: 5 中间 //示例: watermark('datu.p

  • php+curl 发送图片处理代码分享

    //上传页面代码 $url = "http://192.168.1.100/upload.php?lang=cn"; #可以get传相应参数 $file = $path.'/'. $Icon; //要上传的文件 $fields['f'] = '@'.$file; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt

  • PHP图片处理之图片旋转和图片翻转实例

    图片的旋转和翻转也是Web项目中比较常见的功能,但这是两个不同的概念,图片的旋转是按特定的角度来转动图片,而图片的翻转则是将图片的内容按特定的方向对调.图片翻转需要自己编写函数来实现,而旋转图片则可以直接借助GD库中提供的imagerotate()函数完成.该函数的原型如下所示: 复制代码 代码如下: resource  imagerotate(resource src_im ,    float angle,    int bgd_color    [,int ignore_transpatr

  • 功能强大的PHP图片处理类(水印、透明度、旋转)

    非常强大的php图片处理类,可以自定义图片水印.透明度.图片缩放.图片锐化.图片旋转.图片翻转.图片剪切.图片反色. * 图片处理函数功能:缩放.剪切.相框.水印.锐化.旋转.翻转.透明度.反色 * 处理并保存历史记录的思路:当有图片有改动时自动生成一张新图片,命名方式可以考虑在原图片的基础上加上步骤,例如:图片名称+__第几步 具体代码如下: <?php class picture{ var $PICTURE_URL; //要处理的图片 var $DEST_URL = "temp__01

  • PHP图片处理之图片背景、画布操作

    像验证码或根据动态数据生成统计图标,以及前面介绍的一些GD库操作等都属于动态绘制图像.而在web开发中,也会经常去处理服务器中已存在的图片.例如,根据一些需求对图片进行缩放.加水印.裁剪.翻转和旋转等改图的操作.在web应用中,经常使用的图片格式有GIF.JPEG和PNG中的一种或几种,当然GD库也可以处理其他格式的图片,但都很少用到.所以安装GD库时,至少安装GIF.JPEG或PNG三种格式中的一种. 在前面介绍的画布管理中,使用imagecreate()和imageCreateTrueCol

  • Ajax+PHP边学边练 之五 图片处理

    先上个效果图:  Sample6_1.php 中创建Form: 复制代码 代码如下: //显示上传状态和图片 <div id="showimg"></div> //上传文件需要定义enctype,为了显示图片将target设为uploadframe <form id="uploadform" action="process_upload.php" method="post" enctype=&qu

  • PHP图片处理类 phpThumb参数用法介绍

    phpThumb几个基本参数 一些有用的参数列一下: src:目标图片的地址 w:输出图片的宽度 h:输出图片的高度(如果不指定他将按w参数等比缩放) q:输出如果是JPG格式的,可以规定它的输出质量 bg:输出时的背景(如果需要) sw.sh.sx.sy:局部输出,宽高.起始位置 f:输出格式,可以为jpeg.png.gif.ico sfn:输出gif动画中的某一帧 fltr[]:滤镜,可以有很多效果,包括锐化.模糊.旋翻转.水印.边框.遮照.色彩调整等 更多效果可以参看官方例程: http:

  • PHP图片处理之使用imagecopyresampled函数实现图片缩放例子

    网站优化不能只定在代码上,内容也是网站最需要优化的对象之一,而图像又是网站中最主要的内容.图像的优化最需要处理的就是将所有上传到网站中的大图片自动缩放称小图(在网页中大小够用就行),以减少N倍的存储空间,并提高下载浏览的速度.所以图片缩放成一个动态网站必须要处理的任务,经常和文件上传绑定在一起工作,能在上传图片的同时就调整其大小.当然有时也需要单独处理图片缩放,例如在做图片列表时,如果直接用大图而在显示时才将其缩放成小图,这样做不仅下载速度会变慢,也会降低页面响应时间.通常遇到这样的应用都是在上

随机推荐