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

php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-03 16:11:20 浏览: 评论:0 

这篇文章主要介绍了php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法,可实现通过调用ImageMagick功能的PHP扩展使PHP具备和ImageMagick相同的功能,最终实现强大的ImageMagick图形处理功能,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法。分享给大家供大家参考。具体分析如下:

一个可以供PHP调用ImageMagick功能的PHP扩展。使用这个扩展可以使PHP具备和ImageMagick相同的功能。

ImageMagick是一套功能强大、稳定而且免费的工具集和开发包,可以用来读、写和处理超过185种基本格式的图片文件,包括流行的TIFF, JPEG, GIF, PNG, PDF以及PhotoCD等格式。利用ImageMagick,你可以根据web应用程序的需要动态生成图片, 还可以对一个(或一组)图片进行改变大小、旋转、锐化、减色或增加特效等操作,并将操作的结果以相同格式或其它格式保存。

php_imagick是PHP对图片处理的一个扩展包,可以完成对图片改变大小、旋转、锐化、减色或增加特效等操作。

一、windows下安装Imagick扩展:

1、下载 ImageMagick并安装

http://image_magick.veidrodis.com/image_magick/binaries/ImageMagick-6.6.2-10-Q16-windows-dll.exe

2、下载php_imagick.dll

http://valokuva.org/outside-blog-content/imagick-windows-builds/php53/imagick-2.3.0-dev/vc9_nts/php_imagick.dll

如果你用的是线程安全的php,请下载

http://valokuva.org/outside-blog-content/imagick- windows-builds/php53/imagick-2.3.0-dev/vc9_zts/php_imagick.dll

3、设置

在php.ini中添加

extension=php_imagick.dll ,重启web server

二、linux下安装Imagick扩展:

1.yum安装ImageMagick

yum install ImageMagick ImageMagick-devel

2.测试是否安装成功

convert -version

3.安装imagick扩展

01.wget http://pecl.php.net/get/imagick-3.1.0RC2.tgz02.tar xzvf imagick-3.1.0RC2.tgz03.cd imagick-3.1.0RC204.phpize05../configure06.make07.make install

4.编辑php.ini文件,在文件末尾添加如下代码

extension=imagick.so

5. 重新启动apache服务器

service httpd restart

三、案例

1. 边框处理,代码如下:

  1. header('Content-type: image/jpeg');  
  2. $image = new Imagick('test.jpg');  
  3. $color=new ImagickPixel();  
  4. $color->setColor("rgb(220,220,220)");  
  5. $image->borderImage($color,5,4);  
  6. $image->blurImage(5,5,imagick::CHANNEL_GREEN);  
  7. echo $image

我们先来看个简单的实例

php_imagick程序示例

1.创建一个缩略图并显示出来,代码如下:

  1. <?php  
  2. header('Content-type: image/jpeg');  
  3. $image = new Imagick('image.jpg');  
  4. // If 0 is provided as a width or height parameter,// aspect ratio is maintained  
  5. $image->thumbnailImage(100, 0);  
  6. echo $image;  
  7. ?> 

2.创建一个目录下的缩略图,并保存,代码如下:

  1. <?php  
  2. $images = new Imagick(glob('images/*.JPG'));  
  3. foreach($images as $image) {  
  4. // Providing 0 forces thumbnailImage to maintain aspect ratio   
  5. $image->thumbnailImage(1024,0);  
  6. }  
  7. $images->writeImages();  
  8. ?> 

3.缩略GIF动画图片,代码如下:

  1. <?php  
  2. /* Create a new imagick object and read in GIF */ 
  3. $im = new Imagick("example.gif");  
  4. /* Resize all frames */ 
  5. foreach ($im as $frame) {  
  6. /* 50x50 frames */ 
  7. $frame->thumbnailImage(50, 50);  
  8. /* Set the virtual canvas to correct size */ 
  9. $frame->setImagePage(50, 50, 0, 0);  
  10. }/* Notice writeImages instead of writeImage */ 
  11. $im->writeImages("example_small.gif", true);  
  12. ?> 

现在我们进入正题吧,示例:

裁切/生成缩略图/添加水印, 自动检测和处理 GIF

调用方式:

  1. include 'imagick.class.php';  
  2. $image = new lib_image_imagick();  
  3. $image->open('a.gif');  
  4. $image->resize_to(100, 100, 'scale_fill');  
  5. $image->add_text('1024i.com', 10, 20);  
  6. $image->add_watermark('1024i.gif', 10, 50);  
  7. $image->save_to('x.gif'); 
  8. imagick.class.php 
  9. <?php  
  10. class lib_image_imagick  
  11. {  
  12.  private $image = null;  
  13.  private $type = null;  
  14.  // 构造函数  
  15.  public function __construct(){}  
  16.  
  17.  // 析构函数  
  18.  public function __destruct()  
  19.  {  
  20.      if($this->image!==null) $this->image->destroy();   
  21.  }  
  22.  // 载入图像  
  23.  public function open($path)  
  24.  {  
  25.   $this->image = new Imagick( $path );  
  26.   if($this->image)  
  27.   {  
  28.       $this->type = strtolower($this->image->getImageFormat());  
  29.   }  
  30.   return $this->image;  
  31.  }  
  32.    
  33.  public function crop($x=0, $y=0, $width=null, $height=null)  
  34.  {  
  35.      if($width==null) $width = $this->image->getImageWidth()-$x;  
  36.      if($height==null) $height = $this->image->getImageHeight()-$y;  
  37.      if($width<=0 || $height<=0) return;  
  38.        
  39.      if($this->type=='gif')  
  40.      {  
  41.             $image = $this->image;  
  42.          $canvas = new Imagick();  
  43.            
  44.          $images = $image->coalesceImages();  
  45.          foreach($images as $frame){  
  46.              $img = new Imagick();  
  47.              $img->readImageBlob($frame);  
  48.                 $img->cropImage($width$height$x$y);  
  49.                 $canvas->addImage( $img );  
  50.                 $canvas->setImageDelay( $img->getImageDelay() );  
  51.                 $canvas->setImagePage($width$height, 0, 0);  
  52.             }  
  53.               
  54.             $image->destroy();  
  55.          $this->image = $canvas;  
  56.      }  
  57.      else 
  58.      {  
  59.          $this->image->cropImage($width$height$x$y);  
  60.      }  
  61.  }  
  62.  /* 
  63.  * 更改图像大小  
  64.  $fit: 适应大小方式  
  65.  'force': 把图片强制变形成 $width X $height 大小  
  66.  'scale': 按比例在安全框 $width X $height 内缩放图片, 输出缩放后图像大小 不完全等于 $width X $height  
  67.  'scale_fill': 按比例在安全框 $width X $height 内缩放图片,安全框内没有像素的地方填充色, 使用此参数时可设置背景填充色 $bg_color = array(255,255,255)(红,绿,蓝, 透明度) 透明度(0不透明-127完全透明))  
  68.  其它: 智能模能 缩放图像并载取图像的中间部分 $width X $height 像素大小  
  69.  $fit = 'force','scale','scale_fill' 时: 输出完整图像  
  70.  $fit = 图像方位值 时, 输出指定位置部分图像   
  71.  字母与图像的对应关系如下:  
  72.    
  73.  north_west   north   north_east  
  74.    
  75.  west         center        east  
  76.    
  77.  south_west   south   south_east  
  78.    
  79.  */ 
  80.  public function resize_to($width = 100, $height = 100, $fit = 'center'$fill_color = array(255,255,255,0) )  
  81.  {  
  82.        
  83.      switch($fit)  
  84.      {  
  85.          case 'force':  
  86.              if($this->type=='gif')  
  87.              {  
  88.                  $image = $this->image;  
  89.                  $canvas = new Imagick();  
  90.                    
  91.                  $images = $image->coalesceImages();  
  92.                  foreach($images as $frame){  
  93.                      $img = new Imagick();  
  94.                      $img->readImageBlob($frame);  
  95.                         $img->thumbnailImage( $width$height, false );  
  96.                         $canvas->addImage( $img );  
  97.                         $canvas->setImageDelay( $img->getImageDelay() );  
  98.                     }  
  99.                     $image->destroy();  
  100.                  $this->image = $canvas;  
  101.              }  
  102.              else 
  103.              {  
  104.                  $this->image->thumbnailImage( $width$height, false );  
  105.              }  
  106.              break;  
  107.          case 'scale':  
  108.              if($this->type=='gif')  
  109.              {  
  110.                  $image = $this->image;  
  111.                  $images = $image->coalesceImages();  
  112.                  $canvas = new Imagick();  
  113.                  foreach($images as $frame){  
  114.                      $img = new Imagick();  
  115.                      $img->readImageBlob($frame);  
  116.                         $img->thumbnailImage( $width$height, true );  
  117.                         $canvas->addImage( $img );  
  118.                         $canvas->setImageDelay( $img->getImageDelay() );  
  119.                     }  
  120.                     $image->destroy();  
  121.                  $this->image = $canvas;  
  122.              }  
  123.              else 
  124.              {  
  125.                  $this->image->thumbnailImage( $width$height, true );  
  126.              }  
  127.              break;  
  128.          case 'scale_fill':  
  129.              $size = $this->image->getImagePage();   
  130.              $src_width = $size['width'];  
  131.              $src_height = $size['height'];  
  132.                
  133.                 $x = 0;  
  134.                 $y = 0;  
  135.                   
  136.                 $dst_width = $width;  
  137.                 $dst_height = $height;  
  138.     if($src_width*$height > $src_height*$width)  
  139.     {  
  140.      $dst_height = intval($width*$src_height/$src_width);  
  141.      $y = intval( ($height-$dst_height)/2 );  
  142.     }  
  143.     else 
  144.     {  
  145.      $dst_width = intval($height*$src_width/$src_height);  
  146.      $x = intval( ($width-$dst_width)/2 );  
  147.     }  
  148.                 $image = $this->image;  
  149.                 $canvas = new Imagick();  
  150.                   
  151.                 $color = 'rgba('.$fill_color[0].','.$fill_color[1].','.$fill_color[2].','.$fill_color[3].')';  
  152.              if($this->type=='gif')  
  153.              {  
  154.                  $images = $image->coalesceImages();  
  155.                  foreach($images as $frame)  
  156.                  {  
  157.                      $frame->thumbnailImage( $width$height, true );  
  158.                      $draw = new ImagickDraw();  
  159.                         $draw->composite($frame->getImageCompose(), $x$y$dst_width$dst_height$frame);  
  160.                         $img = new Imagick();  
  161.                         $img->newImage($width$height$color'gif');  
  162.                         $img->drawImage($draw);  
  163.                         $canvas->addImage( $img );  
  164.                         $canvas->setImageDelay( $img->getImageDelay() );  
  165.                         $canvas->setImagePage($width$height, 0, 0);  
  166.                     }  
  167.              }  
  168.              else 
  169.              {  
  170.                  $image->thumbnailImage( $width$height, true );  
  171.                    
  172.                  $draw = new ImagickDraw();  
  173.                     $draw->composite($image->getImageCompose(), $x$y$dst_width$dst_height$image);  
  174.                       
  175.                  $canvas->newImage($width$height$color$this->get_type() );  
  176.                     $canvas->drawImage($draw);  
  177.                     $canvas->setImagePage($width$height, 0, 0);  
  178.              }  
  179.              $image->destroy();  
  180.              $this->image = $canvas;  
  181.              break;  
  182.    default:  
  183.     $size = $this->image->getImagePage();   
  184.        $src_width = $size['width'];  
  185.              $src_height = $size['height'];  
  186.                
  187.                 $crop_x = 0;  
  188.                 $crop_y = 0;  
  189.                   
  190.                 $crop_w = $src_width;  
  191.                 $crop_h = $src_height;  
  192.                   
  193.           if($src_width*$height > $src_height*$width)  
  194.     {  
  195.      $crop_w = intval($src_height*$width/$height);  
  196.     }  
  197.     else 
  198.     {  
  199.         $crop_h = intval($src_width*$height/$width);  
  200.     }  
  201.                   
  202.        switch($fit)  
  203.              {  
  204.         case 'north_west':  
  205.             $crop_x = 0;  
  206.             $crop_y = 0;  
  207.             break;  
  208.            case 'north':  
  209.                $crop_x = intval( ($src_width-$crop_w)/2 );  
  210.                $crop_y = 0;  
  211.                break;  
  212.            case 'north_east':  
  213.                $crop_x = $src_width-$crop_w;  
  214.                $crop_y = 0;  
  215.                break;  
  216.            case 'west':  
  217.                $crop_x = 0;  
  218.                $crop_y = intval( ($src_height-$crop_h)/2 );  
  219.                break;  
  220.            case 'center':  
  221.                $crop_x = intval( ($src_width-$crop_w)/2 );  
  222.                $crop_y = intval( ($src_height-$crop_h)/2 );  
  223.                break;  
  224.            case 'east':  
  225.                $crop_x = $src_width-$crop_w;  
  226.                $crop_y = intval( ($src_height-$crop_h)/2 );  
  227.                break;  
  228.            case 'south_west':  
  229.                $crop_x = 0;  
  230.                $crop_y = $src_height-$crop_h;  
  231.                break;  
  232.            case 'south':  
  233.                $crop_x = intval( ($src_width-$crop_w)/2 );  
  234.                $crop_y = $src_height-$crop_h;  
  235.                break;  
  236.            case 'south_east':  
  237.                $crop_x = $src_width-$crop_w;  
  238.                $crop_y = $src_height-$crop_h;  
  239.                break;  
  240.            default:  
  241.                $crop_x = intval( ($src_width-$crop_w)/2 );  
  242.                $crop_y = intval( ($src_height-$crop_h)/2 );  
  243.              }  
  244.                
  245.              $image = $this->image;  
  246.              $canvas = new Imagick();  
  247.                
  248.           if($this->type=='gif')  
  249.              {  
  250.                  $images = $image->coalesceImages();  
  251.                  foreach($images as $frame){  
  252.                      $img = new Imagick();  
  253.                      $img->readImageBlob($frame);  
  254.                         $img->cropImage($crop_w$crop_h$crop_x$crop_y);  
  255.                         $img->thumbnailImage( $width$height, true );  
  256.                           
  257.                         $canvas->addImage( $img );  
  258.                         $canvas->setImageDelay( $img->getImageDelay() );  
  259.                         $canvas->setImagePage($width$height, 0, 0);  
  260.                     }  
  261.              }  
  262.              else 
  263.              {  
  264.                  $image->cropImage($crop_w$crop_h$crop_x$crop_y);  
  265.                  $image->thumbnailImage( $width$height, true );  
  266.                  $canvas->addImage( $image );  
  267.                  $canvas->setImagePage($width$height, 0, 0);  
  268.              }  
  269.              $image->destroy();  
  270.              $this->image = $canvas;  
  271.      }  
  272.        
  273.  }  
  274.    
  275.  // 添加水印图片  
  276.  public function add_watermark($path$x = 0, $y = 0)  
  277.  {  
  278.         $watermark = new Imagick($path);  
  279.         $draw = new ImagickDraw();  
  280.         $draw->composite($watermark->getImageCompose(), $x$y$watermark->getImageWidth(), $watermark->getimageheight(), $watermark);  
  281.      if($this->type=='gif')  
  282.      {  
  283.          $image = $this->image;  
  284.             $canvas = new Imagick();  
  285.          $images = $image->coalesceImages();  
  286.          foreach($image as $frame)  
  287.          {  
  288.                 $img = new Imagick();  
  289.              $img->readImageBlob($frame);  
  290.                 $img->drawImage($draw);  
  291.                   
  292.                 $canvas->addImage( $img );  
  293.                 $canvas->setImageDelay( $img->getImageDelay() );  
  294.             }  
  295.             $image->destroy();  
  296.          $this->image = $canvas;  
  297.      }  
  298.      else 
  299.      {  
  300.          $this->image->drawImage($draw);  
  301.      }  
  302.  }  
  303.    
  304.  // 添加水印文字  
  305.  public function add_text($text$x = 0 , $y = 0, $angle=0, $style=array())  
  306.  {  
  307.         $draw = new ImagickDraw();  
  308.         if(isset($style['font'])) $draw->setFont($style['font']);  
  309.         if(isset($style['font_size'])) $draw->setFontSize($style['font_size']);  
  310.      if(isset($style['fill_color'])) $draw->setFillColor($style['fill_color']);  
  311.      if(isset($style['under_color'])) $draw->setTextUnderColor($style['under_color']);  
  312.        
  313.      if($this->type=='gif')  
  314.      {  
  315.          foreach($this->image as $frame)  
  316.          {  
  317.              $frame->annotateImage($draw$x$y$angle$text);  
  318.          }  
  319.      }  
  320.      else 
  321.      {  
  322.          $this->image->annotateImage($draw$x$y$angle$text);  
  323.      }  
  324.  }  
  325.    
  326.  // 保存到指定路径  
  327.  public function save_to( $path )  
  328.  {  
  329.      if($this->type=='gif')  
  330.      {  
  331.          $this->image->writeImages($path, true);  
  332.      }  
  333.      else 
  334.      {  
  335.          $this->image->writeImage($path);  
  336.      }  
  337.  }  
  338.  // 输出图像  
  339.  public function output($header = true)  
  340.  {  
  341.      if($header) header('Content-type: '.$this->type);  
  342.      echo $this->image->getImagesBlob();    
  343.  }  
  344.    
  345.  public function get_width()  
  346.  {  
  347.         $size = $this->image->getImagePage();   
  348.         return $size['width'];  
  349.  }  
  350.    
  351.  public function get_height()  
  352.  {  
  353.      $size = $this->image->getImagePage();   
  354.         return $size['height'];  
  355.  }  
  356.  // 设置图像类型, 默认与源类型一致  
  357.  public function set_type( $type='png' )  
  358.  {  
  359.      $this->type = $type;  
  360.         $this->image->setImageFormat( $type );  
  361.  }  
  362.  // 获取源图像类型  
  363.  public function get_type()  
  364.  {  
  365.   return $this->type;  
  366.  }  
  367.  
  368.  // 当前对象是否为图片  
  369.  public function is_image()  
  370.  {  
  371.   if$this->image )  
  372.    return true;  
  373.   else 
  374.    return false;  
  375.  }  
  376.  
  377.  public function thumbnail($width = 100, $height = 100, $fit = true){ $this->image->thumbnailImage( $width$height$fit );} // 生成缩略图 $fit为真时将保持比例并在安全框 $width X $height 内生成缩略图片  
  378.  /* 
  379.  添加一个边框  
  380.  $width: 左右边框宽度  
  381.  $height: 上下边框宽度  
  382.  $color: 颜色: RGB 颜色 'rgb(255,0,0)' 或 16进制颜色 '#FF0000' 或颜色单词 'white'/'red'...  
  383.  */ 
  384.  public function border($width$height$color='rgb(220, 220, 220)')  
  385.  {  
  386.   $color=new ImagickPixel();  
  387.   $color->setColor($color);  
  388.   $this->image->borderImage($color$width$height);  
  389.  }  
  390.    
  391.  public function blur($radius$sigma){$this->image->blurImage($radius$sigma);} // 模糊  
  392.  public function gaussian_blur($radius$sigma){$this->image->gaussianBlurImage($radius$sigma);} // 高斯模糊  
  393.  public function motion_blur($radius$sigma$angle){$this->image->motionBlurImage($radius$sigma$angle);} // 运动模糊  
  394.  public function radial_blur($radius){$this->image->radialBlurImage($radius);} // 径向模糊  
  395.  public function add_noise($type=null){$this->image->addNoiseImage($type==null?imagick::NOISE_IMPULSE:$type);} // 添加噪点  
  396.    
  397.  public function level($black_point$gamma$white_point){$this->image->levelImage($black_point$gamma$white_point);} // 调整色阶  
  398.  public function modulate($brightness$saturation$hue){$this->image->modulateImage($brightness$saturation$hue);} // 调整亮度、饱和度、色调  
  399.  public function charcoal($radius$sigma){$this->image->charcoalImage($radius$sigma);} // 素描  
  400.  public function oil_paint($radius){$this->image->oilPaintImage($radius);} // 油画效果  
  401.    
  402.  public function flop(){$this->image->flopImage();} // 水平翻转  
  403.  public function flip(){$this->image->flipImage();} // 垂直翻转  

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

Tags: php_imagick

分享到: