当前位置:首页 > CMS教程 > DeDecms > 列表

摘自织梦CMS中的图片处理类

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-16 10:01:29 浏览: 评论:0 

这篇文章主要介绍了摘自织梦CMS中的图片处理类,通过面向对象的方式较为详细的实现了php针对图片的缩略图生成及水印添加等操作技巧,非常具有实用价值,需要的朋友可以参考下。

本文实例讲述了摘自织梦CMS中的图片处理类,分享给大家供大家参考,具体如下:

  1. <?php if(!defined('DEDEINC')) exit('dedecms'); 
  2. /** 
  3.  * 图像处理类 
  4.  * 
  5.  * @version  $Id: image.class.php 1 18:10 2010年7月5日Z tianya $ 
  6.  * @package  DedeCMS.Libraries 
  7.  * @copyright  Copyright (c) 2007 - 2010, DesDev, Inc. 
  8.  * @license  http://help.dedecms.com/usersguide/license.html 
  9.  * @link   http://www.dedecms.com 
  10.  */ 
  11. class image 
  12.  var $attachinfo
  13.  var $targetfile//图片路径 
  14.  var $imagecreatefromfunc
  15.  var $imagefunc
  16.  var $attach
  17.  var $animatedgif
  18.  var $watermarkquality
  19.  var $watermarktext
  20.  var $thumbstatus
  21.  var $watermarkstatus
  22.  // 析构函数,兼容PHP4 
  23.  function image($targetfile$cfg_thumb$cfg_watermarktext$photo_waterpos$photo_diaphaneity$photo_wheight$photo_wwidth$cfg_watermarktype$photo_marktrans,$trueMarkimg$attach = array()) 
  24.  { 
  25.   $this->__construct($targetfile$cfg_thumb$cfg_watermarktext$photo_waterpos$photo_diaphaneity$photo_wheight$photo_wwidth$cfg_watermarktype$photo_marktrans,$trueMarkimg$attach); 
  26.  } 
  27.  // 析构函数 
  28.  function __construct($targetfile$cfg_thumb$cfg_watermarktext$photo_waterpos$photo_diaphaneity$photo_wheight$photo_wwidth$cfg_watermarktype$photo_marktrans,$trueMarkimg$attach = array()) 
  29.  { 
  30.   $this->thumbstatus = $cfg_thumb
  31.   $this->watermarktext = $cfg_watermarktext
  32.   $this->watermarkstatus = $photo_waterpos
  33.   $this->watermarkquality = $photo_marktrans
  34.   $this->watermarkminwidth = $photo_wwidth
  35.   $this->watermarkminheight = $photo_wheight
  36.   $this->watermarktype = $cfg_watermarktype
  37.   $this->watermarktrans = $photo_diaphaneity
  38.   $this->animatedgif = 0; 
  39.   $this->targetfile = $targetfile
  40.   $this->attachinfo = @getimagesize($targetfile); 
  41.   $this->attach = $attach
  42.   switch($this->attachinfo['mime']) 
  43.   { 
  44.    case 'image/jpeg'
  45.     $this->imagecreatefromfunc = function_exists('imagecreatefromjpeg') ? 'imagecreatefromjpeg' : ''
  46.     $this->imagefunc = function_exists('imagejpeg') ? 'imagejpeg' : ''
  47.     break
  48.    case 'image/gif'
  49.     $this->imagecreatefromfunc = function_exists('imagecreatefromgif') ? 'imagecreatefromgif' : ''
  50.     $this->imagefunc = function_exists('imagegif') ? 'imagegif' : ''
  51.     break
  52.    case 'image/png'
  53.     $this->imagecreatefromfunc = function_exists('imagecreatefrompng') ? 'imagecreatefrompng' : ''
  54.     $this->imagefunc = function_exists('imagepng') ? 'imagepng' : ''
  55.     break
  56.   }//为空则匹配类型的函数不存在 
  57.   $this->attach['size'] = emptyempty($this->attach['size']) ? @filesize($targetfile) : $this->attach['size']; 
  58.   if($this->attachinfo['mime'] == 'image/gif'
  59.   { 
  60.    $fp = fopen($targetfile'rb'); 
  61.    $targetfilecontent = fread($fp$this->attach['size']); 
  62.    fclose($fp); 
  63.    $this->animatedgif = strpos($targetfilecontent'NETSCAPE2.0') === false ? 0 : 1; 
  64.   } 
  65.  } 
  66.  /** 
  67.   * 生成缩略图 
  68.   * 
  69.   * @access public 
  70.   * @param  int $thumbwidth 图片宽度 
  71.   * @param  int $thumbheight 图片高度 
  72.   * @param  int $preview 是否预览 
  73.   * @return void 
  74.   */ 
  75.  function thumb($thumbwidth$thumbheight$preview = 0) 
  76.  { 
  77.   $this->thumb_gd($thumbwidth$thumbheight$preview); 
  78.    
  79.   if($this->thumbstatus == 2 && $this->watermarkstatus) 
  80.   { 
  81.    $this->image($this->targetfile, $this->attach); 
  82.    $this->attach['size'] = filesize($this->targetfile); 
  83.   } 
  84.  } 
  85.  /** 
  86.   * 图片水印 
  87.   * 
  88.   * @access public 
  89.   * @param  int $preview 是否预览 
  90.   * @return void 
  91.   */ 
  92.  function watermark($preview = 0) 
  93.  { 
  94.   if($this->watermarkminwidth && $this->attachinfo[0] <= $this->watermarkminwidth && $this->watermarkminheight && $this->attachinfo[1] <= $this->watermarkminheight) 
  95.   { 
  96.    return ; 
  97.   } 
  98.   $this->watermark_gd($preview); 
  99.  } 
  100.  /** 
  101.   * 使用gd生成缩略图 
  102.   * 
  103.   * @access public 
  104.   * @param  int $thumbwidth 图片宽度 
  105.   * @param  int $thumbheight 图片高度 
  106.   * @param  int $preview 是否预览 
  107.   * @return void 
  108.   */ 
  109.  function thumb_gd($thumbwidth$thumbheight$preview = 0) 
  110.  { 
  111.   if($this->thumbstatus && function_exists('imagecreatetruecolor') && function_exists('imagecopyresampled') && function_exists('imagejpeg')) 
  112.   { 
  113.    $imagecreatefromfunc = $this->imagecreatefromfunc; 
  114.    $imagefunc = $this->thumbstatus == 1 ? 'imagejpeg' : $this->imagefunc; 
  115.    list($imagewidth$imageheight) = $this->attachinfo; 
  116.    if(!$this->animatedgif && ($imagewidth >= $thumbwidth || $imageheight >= $thumbheight)) 
  117.    { 
  118.     $attach_photo = $imagecreatefromfunc($this->targetfile); 
  119.     $x_ratio = $thumbwidth / $imagewidth
  120.     $y_ratio = $thumbheight / $imageheight
  121.     if(($x_ratio * $imageheight) < $thumbheight
  122.     { 
  123.      $thumb['height'] = ceil($x_ratio * $imageheight); 
  124.      $thumb['width'] = $thumbwidth
  125.     } 
  126.     else 
  127.     { 
  128.      $thumb['width'] = ceil($y_ratio * $imagewidth); 
  129.      $thumb['height'] = $thumbheight
  130.     } 
  131.     $targetfile = !$preview ? ($this->thumbstatus == 1 ? $this->targetfile.'.thumb.jpg' : $this->targetfile) : './watermark_tmp.jpg'
  132.     $thumb_photo = imagecreatetruecolor($thumb['width'], $thumb['height']); 
  133.     imagecopyresampled($thumb_photo$attach_photo, 0, 0, 0, 0, $thumb['width'], $thumb['height'], $imagewidth$imageheight); 
  134.     if($this->attachinfo['mime'] == 'image/jpeg'
  135.     { 
  136.      $imagefunc($thumb_photo$targetfile, 100); 
  137.     } 
  138.     else 
  139.     { 
  140.      $imagefunc($thumb_photo$targetfile); 
  141.     } 
  142.     $this->attach['thumb'] = $this->thumbstatus == 1 ? 1 : 0; 
  143.    } 
  144.   } 
  145.  } 
  146.  /** 
  147.   * 使用gd进行水印 
  148.   * 
  149.   * @access public 
  150.   * @param  int $preview 是否预览 
  151.   * @return void 
  152.   */ 
  153.  function watermark_gd($preview = 0) 
  154.  { 
  155.   if($this->watermarkstatus && function_exists('imagecopy') && function_exists('imagealphablending') && function_exists('imagecopymerge')) 
  156.   { 
  157.    $imagecreatefunc = $this->imagecreatefromfunc; 
  158.    $imagefunc = $this->imagefunc; 
  159.    list($imagewidth$imageheight) = $this->attachinfo; 
  160.    if($this->watermarktype < 2) 
  161.    { 
  162.     $watermark_file = $this->watermarktype == 1 ? DEDEDATA.'/mark/mark.png' : DEDEDATA.'/mark/mark.gif'
  163.     $watermarkinfo = @getimagesize($watermark_file); 
  164.     $watermark_logo = $this->watermarktype == 1 ? @imagecreatefrompng($watermark_file) : @imagecreatefromgif($watermark_file); 
  165.     if(!$watermark_logo
  166.     { 
  167.      return ; 
  168.     } 
  169.     list($logowidth$logoheight) = $watermarkinfo
  170.    } 
  171.    else 
  172.    { 
  173.     $box = @imagettfbbox($this->watermarktext['size'], $this->watermarktext['angle'], $this->watermarktext['fontpath'],$this->watermarktext['text']); 
  174.     $logowidth = max($box[2], $box[4]) - min($box[0], $box[6]); 
  175.     $logoheight = max($box[1], $box[3]) - min($box[5], $box[7]); 
  176.     $ax = min($box[0], $box[6]) * -1; 
  177.     $ay = min($box[5], $box[7]) * -1; 
  178.    } 
  179.    $wmwidth = $imagewidth - $logowidth
  180.    $wmheight = $imageheight - $logoheight
  181.    if(($this->watermarktype < 2 && is_readable($watermark_file) || $this->watermarktype == 2) && $wmwidth > 10 && $wmheight > 10 && !$this->animatedgif) 
  182.    { 
  183.     switch($this->watermarkstatus) 
  184.     { 
  185.      case 1: 
  186.    
  187.       $x = +5; 
  188.       $y = +5; 
  189.       break
  190.      case 2: 
  191.       $x = ($imagewidth - $logowidth) / 2; 
  192.       $y = +5; 
  193.       break
  194.      case 3: 
  195.       $x = $imagewidth - $logowidth - 5; 
  196.       $y = +5; 
  197.       break
  198.      case 4: 
  199.       $x = +5; 
  200.       $y = ($imageheight - $logoheight) / 2; 
  201.       break
  202.      case 5: 
  203.       $x = ($imagewidth - $logowidth) / 2; 
  204.       $y = ($imageheight - $logoheight) / 2; 
  205.       break
  206.      case 6: 
  207.       $x = $imagewidth - $logowidth - 5; 
  208.       $y = ($imageheight - $logoheight) / 2; 
  209.       break
  210.      case 7: 
  211.       $x = +5; 
  212.       $y = $imageheight - $logoheight - 5; 
  213.       break
  214.      case 8: 
  215.       $x = ($imagewidth - $logowidth) / 2; 
  216.       $y = $imageheight - $logoheight - 5; 
  217.       break
  218.      case 9: 
  219.       $x = $imagewidth - $logowidth - 5; 
  220.       $y = $imageheight - $logoheight -5; 
  221.       break
  222.     } 
  223.     $dst_photo = @imagecreatetruecolor($imagewidth$imageheight); 
  224.     $target_photo = $imagecreatefunc($this->targetfile); 
  225.     imagecopy($dst_photo$target_photo, 0, 0, 0, 0, $imagewidth$imageheight); 
  226.     if($this->watermarktype == 1) 
  227.     { 
  228.      imagecopy($dst_photo$watermark_logo$x$y, 0, 0, $logowidth$logoheight); 
  229.     } 
  230.     elseif($this->watermarktype == 2) 
  231.     { 
  232.      if(($this->watermarktext['shadowx'] || $this->watermarktext['shadowy']) && $this->watermarktext['shadowcolor']) 
  233.      { 
  234.       $shadowcolorrgb = explode(','$this->watermarktext['shadowcolor']); 
  235.       $shadowcolor = imagecolorallocate($dst_photo$shadowcolorrgb[0], $shadowcolorrgb[1], $shadowcolorrgb[2]); 
  236.       imagettftext($dst_photo$this->watermarktext['size'], $this->watermarktext['angle'], 
  237.       $x + $ax + $this->watermarktext['shadowx'], $y + $ay + $this->watermarktext['shadowy'], $shadowcolor
  238.       $this->watermarktext['fontpath'], $this->watermarktext['text']); 
  239.      } 
  240.      $colorrgb = explode(','$this->watermarktext['color']); 
  241.      $color = imagecolorallocate($dst_photo$colorrgb[0], $colorrgb[1], $colorrgb[2]); 
  242.      imagettftext($dst_photo$this->watermarktext['size'], $this->watermarktext['angle'], 
  243.      $x + $ax$y + $ay$color$this->watermarktext['fontpath'], $this->watermarktext['text']); 
  244.     } 
  245.     else 
  246.     { 
  247.      imagealphablending($watermark_logo, true); 
  248.      imagecopymerge($dst_photo$watermark_logo$x$y, 0, 0, $logowidth$logoheight$this->watermarktrans); 
  249.     } 
  250.     $targetfile = !$preview ? $this->targetfile : './watermark_tmp.jpg'
  251.     if($this->attachinfo['mime'] == 'image/jpeg'
  252.     { 
  253.      $imagefunc($dst_photo$targetfile$this->watermarkquality); 
  254.     } 
  255.     else 
  256.     { 
  257.      $imagefunc($dst_photo$targetfile); 
  258.     } 
  259.     $this->attach['size'] = filesize($this->targetfile); 
  260.    } 
  261.   } 
  262.  } 
  263. }//End Class 

希望本文所述对大家的php程序设计有所帮助。

Tags: 织梦CMS图片处理类

分享到: