php使用imagick模块实现图片缩放、裁剪、压缩示例

PHP 使用Imagick模块 缩放,裁剪,压缩图片 包括gif图片

缩放 裁剪

代码如下:

/**
  * 图片裁剪
  * 裁剪规则:
  *   1. 高度为空或为零   按宽度缩放 高度自适应
  *   2. 宽度为空或为零  按高度缩放 宽度自适应
  *      3. 宽度,高度到不为空或为零  按宽高比例等比例缩放裁剪  默认从头部居中裁剪
  * @param number $width
  * @param number $height
  */
 public function resize($width=0, $height=0){
  if($width==0 && $height==0){
   return;
  }

$color = '';// 'rgba(255,255,255,1)';
  $size = $this->image->getImagePage ();
  //原始宽高
  $src_width = $size ['width'];
  $src_height = $size ['height'];

//按宽度缩放 高度自适应
  if($width!=0 && $height==0){
   if($src_width>$width){
    $height = intval($width*$src_height/$src_width);

if ($this->type == 'gif') {
     $this->_resizeGif($width, $height);
    }else{
     $this->image->thumbnailImage ( $width, $height, true );
    }
   }
   return;
  }
  //按高度缩放 宽度自适应
  if($width==0 && $height!=0){
   if($src_height>$height){
    $width = intval($src_width*$height/$src_height);

if ($this->type == 'gif') {
     $this->_resizeGif($width, $height);
    }else{
     $this->image->thumbnailImage ( $width, $height, true );
    }
   }
   return;
  }

//缩放的后的尺寸
  $crop_w = $width;
  $crop_h = $height;

//缩放后裁剪的位置
  $crop_x = 0;
  $crop_y = 0;

if(($src_width/$src_height) < ($width/$height)){
   //宽高比例小于目标宽高比例  宽度等比例放大      按目标高度从头部截取
   $crop_h = intval($src_height*$width/$src_width);
   //从顶部裁剪  不用计算 $crop_y
  }else{
   //宽高比例大于目标宽高比例   高度等比例放大      按目标宽度居中裁剪
   $crop_w = intval($src_width*$height/$src_height);
   $crop_x = intval(($crop_w-$width)/2);
  }

if ($this->type == 'gif') {
   $this->_resizeGif($crop_w, $crop_h, true, $width, $height,$crop_x, $crop_y);
  } else {
   $this->image->thumbnailImage ( $crop_w, $crop_h, true );
   $this->image->cropImage($width, $height,$crop_x, $crop_y);
  }
 }

针对gif图片的处理方法

代码如下:

/**
  * 处理gif图片 需要对每一帧图片处理
  * @param unknown $t_w  缩放宽
  * @param unknown $t_h  缩放高
  * @param string $isCrop  是否裁剪
  * @param number $c_w  裁剪宽
  * @param number $c_h  裁剪高
  * @param number $c_x  裁剪坐标 x
  * @param number $c_y  裁剪坐标 y
  */
 private function _resizeGif($t_w, $t_h, $isCrop=false, $c_w=0, $c_h=0, $c_x=0, $c_y=0){
  $dest = new Imagick();
  $color_transparent = new ImagickPixel("transparent"); //透明色
  foreach($this->image as $img){
   $page = $img->getImagePage();
   $tmp = new Imagick();
   $tmp->newImage($page['width'], $page['height'], $color_transparent, 'gif');
   $tmp->compositeImage($img, Imagick::COMPOSITE_OVER, $page['x'], $page['y']);

$tmp->thumbnailImage ( $t_w, $t_h, true );
   if($isCrop){
    $tmp->cropImage($c_w, $c_h, $c_x, $c_y);
   }

$dest->addImage($tmp);
   $dest->setImagePage($tmp->getImageWidth(), $tmp->getImageHeight(), 0, 0);
   $dest->setImageDelay($img->getImageDelay());
   $dest->setImageDispose($img->getImageDispose());

}
  $this->image->destroy ();
  $this->image = $dest;
 }

保存时压缩处理

代码如下:

// 保存到指定路径
 public function save_to($path) {
  //压缩图片质量
  $this->image->setImageFormat('JPEG');
  $this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
  $a = $this->image->getImageCompressionQuality() * 0.60;
  if ($a == 0) {
   $a = 60;
  }
  $this->image->setImageCompressionQuality($a);
  $this->image->stripImage();

if ($this->type == 'gif') {
   $this->image->writeImages ( $path, true );
  } else {
   $this->image->writeImage ( $path );
  }
 }

ImagickService.php

代码如下:

<?php

/**
 * 图片处理服务类
 * 使用php扩展服务Imagick实现
 * ImageMagick 官网地址 [url]http:www.imagemagick.org/script/index.php[/url] 
 *
 * @author weiguang3
 * @since 20140403
 */
class ImagickService {
 private $image = null;
 private $type = null;

// 构造函数
 public function __construct() {
 }

// 析构函数
 public function __destruct() {
  if ($this->image !== null)
   $this->image->destroy ();
 }

public function init(){

}

// 载入图像
 public function open($path) {
  $this->image = new Imagick ( $path );
  if ($this->image) {
   $this->type = strtolower ( $this->image->getImageFormat () );
  }
  return $this->image;
 }

/**
  * 图片裁剪
  * 裁剪规则:
  *   1. 高度为空或为零   按宽度缩放 高度自适应
  *   2. 宽度为空或为零  按高度缩放 宽度自适应
  *      3. 宽度,高度到不为空或为零  按宽高比例等比例缩放裁剪  默认从头部居中裁剪
  * @param number $width
  * @param number $height
  */
 public function resize($width=0, $height=0){
  if($width==0 && $height==0){
   return;
  }

$color = '';// 'rgba(255,255,255,1)';
  $size = $this->image->getImagePage ();
  //原始宽高
  $src_width = $size ['width'];
  $src_height = $size ['height'];

//按宽度缩放 高度自适应
  if($width!=0 && $height==0){
   if($src_width>$width){
    $height = intval($width*$src_height/$src_width);

if ($this->type == 'gif') {
     $this->_resizeGif($width, $height);
    }else{
     $this->image->thumbnailImage ( $width, $height, true );
    }
   }
   return;
  }
  //按高度缩放 宽度自适应
  if($width==0 && $height!=0){
   if($src_height>$height){
    $width = intval($src_width*$height/$src_height);

if ($this->type == 'gif') {
     $this->_resizeGif($width, $height);
    }else{
     $this->image->thumbnailImage ( $width, $height, true );
    }
   }
   return;
  }

//缩放的后的尺寸
  $crop_w = $width;
  $crop_h = $height;

//缩放后裁剪的位置
  $crop_x = 0;
  $crop_y = 0;

if(($src_width/$src_height) < ($width/$height)){
   //宽高比例小于目标宽高比例  宽度等比例放大      按目标高度从头部截取
   $crop_h = intval($src_height*$width/$src_width);
   //从顶部裁剪  不用计算 $crop_y
  }else{
   //宽高比例大于目标宽高比例   高度等比例放大      按目标宽度居中裁剪
   $crop_w = intval($src_width*$height/$src_height);
   $crop_x = intval(($crop_w-$width)/2);
  }

if ($this->type == 'gif') {
   $this->_resizeGif($crop_w, $crop_h, true, $width, $height,$crop_x, $crop_y);
  } else {
   $this->image->thumbnailImage ( $crop_w, $crop_h, true );
   $this->image->cropImage($width, $height,$crop_x, $crop_y);
  }
 }

/**
  * 处理gif图片 需要对每一帧图片处理
  * @param unknown $t_w  缩放宽
  * @param unknown $t_h  缩放高
  * @param string $isCrop  是否裁剪
  * @param number $c_w  裁剪宽
  * @param number $c_h  裁剪高
  * @param number $c_x  裁剪坐标 x
  * @param number $c_y  裁剪坐标 y
  */
 private function _resizeGif($t_w, $t_h, $isCrop=false, $c_w=0, $c_h=0, $c_x=0, $c_y=0){
  $dest = new Imagick();
  $color_transparent = new ImagickPixel("transparent"); //透明色
  foreach($this->image as $img){
   $page = $img->getImagePage();
   $tmp = new Imagick();
   $tmp->newImage($page['width'], $page['height'], $color_transparent, 'gif');
   $tmp->compositeImage($img, Imagick::COMPOSITE_OVER, $page['x'], $page['y']);

$tmp->thumbnailImage ( $t_w, $t_h, true );
   if($isCrop){
    $tmp->cropImage($c_w, $c_h, $c_x, $c_y);
   }

$dest->addImage($tmp);
   $dest->setImagePage($tmp->getImageWidth(), $tmp->getImageHeight(), 0, 0);
   $dest->setImageDelay($img->getImageDelay());
   $dest->setImageDispose($img->getImageDispose());

}
  $this->image->destroy ();
  $this->image = $dest;
 }

/**
  * 更改图像大小
  *  $fit: 适应大小方式
  *   'force': 把图片强制变形成 $width X $height 大小
  *   'scale': 按比例在安全框 $width X $height 内缩放图片, 输出缩放后图像大小 不完全等于 $width X $height
  *   'scale_fill': 按比例在安全框 $width X $height 内缩放图片,安全框内没有像素的地方填充色,
  *    使用此参数时可设置背景填充色 $bg_color = array(255,255,255)(红,绿,蓝, 透明度)
  *    透明度(0不透明-127完全透明)) 其它: 智能模能 缩放图像并载取图像的中间部分 $width X $height 像素大小
  *  $fit = 'force','scale','scale_fill' 时: 输出完整图像
  *  $fit = 图像方位值 时, 输出指定位置部分图像 字母与图像的对应关系如下:
  *   north_west north north_east
  *   west center east
  *   south_west south south_east
  */
 public function resize_to($width = 100, $height = 100, $fit = 'center', $fill_color = array(255,255,255,0)) {
  switch ($fit) {
   case 'force' :
    if ($this->type == 'gif') {
     $image = $this->image;
     $canvas = new Imagick ();

$images = $image->coalesceImages ();
     foreach ( $images as $frame ) {
      $img = new Imagick ();
      $img->readImageBlob ( $frame );
      $img->thumbnailImage ( $width, $height, false );

$canvas->addImage ( $img );
      $canvas->setImageDelay ( $img->getImageDelay () );
     }
     $image->destroy ();
     $this->image = $canvas;
    } else {
     $this->image->thumbnailImage ( $width, $height, false );
    }
    break;
   case 'scale' :
    if ($this->type == 'gif') {
     $image = $this->image;
     $images = $image->coalesceImages ();
     $canvas = new Imagick ();
     foreach ( $images as $frame ) {
      $img = new Imagick ();
      $img->readImageBlob ( $frame );
      $img->thumbnailImage ( $width, $height, true );

$canvas->addImage ( $img );
      $canvas->setImageDelay ( $img->getImageDelay () );
     }
     $image->destroy ();
     $this->image = $canvas;
    } else {
     $this->image->thumbnailImage ( $width, $height, true );
    }
    break;
   case 'scale_fill' :
    $size = $this->image->getImagePage ();
    $src_width = $size ['width'];
    $src_height = $size ['height'];

$x = 0;
    $y = 0;

$dst_width = $width;
    $dst_height = $height;

if ($src_width * $height > $src_height * $width) {
     $dst_height = intval ( $width * $src_height / $src_width );
     $y = intval ( ($height - $dst_height) / 2 );
    } else {
     $dst_width = intval ( $height * $src_width / $src_height );
     $x = intval ( ($width - $dst_width) / 2 );
    }

$image = $this->image;
    $canvas = new Imagick ();

$color = 'rgba(' . $fill_color [0] . ',' . $fill_color [1] . ',' . $fill_color [2] . ',' . $fill_color [3] . ')';
    if ($this->type == 'gif') {
     $images = $image->coalesceImages ();
     foreach ( $images as $frame ) {
      $frame->thumbnailImage ( $width, $height, true );

$draw = new ImagickDraw ();
      $draw->composite ( $frame->getImageCompose (), $x, $y, $dst_width, $dst_height, $frame );

$img = new Imagick ();
      $img->newImage ( $width, $height, $color, 'gif' );
      $img->drawImage ( $draw );

$canvas->addImage ( $img );
      $canvas->setImageDelay ( $img->getImageDelay () );
      $canvas->setImagePage ( $width, $height, 0, 0 );
     }
    } else {
     $image->thumbnailImage ( $width, $height, true );

$draw = new ImagickDraw ();
     $draw->composite ( $image->getImageCompose (), $x, $y, $dst_width, $dst_height, $image );

$canvas->newImage ( $width, $height, $color, $this->get_type () );
     $canvas->drawImage ( $draw );
     $canvas->setImagePage ( $width, $height, 0, 0 );
    }
    $image->destroy ();
    $this->image = $canvas;
    break;
   default :
    $size = $this->image->getImagePage ();
    $src_width = $size ['width'];
    $src_height = $size ['height'];

$crop_x = 0;
    $crop_y = 0;

$crop_w = $src_width;
    $crop_h = $src_height;

if ($src_width * $height > $src_height * $width) {
     $crop_w = intval ( $src_height * $width / $height );
    } else {
     $crop_h = intval ( $src_width * $height / $width );
    }

switch ($fit) {
     case 'north_west' :
      $crop_x = 0;
      $crop_y = 0;
      break;
     case 'north' :
      $crop_x = intval ( ($src_width - $crop_w) / 2 );
      $crop_y = 0;
      break;
     case 'north_east' :
      $crop_x = $src_width - $crop_w;
      $crop_y = 0;
      break;
     case 'west' :
      $crop_x = 0;
      $crop_y = intval ( ($src_height - $crop_h) / 2 );
      break;
     case 'center' :
      $crop_x = intval ( ($src_width - $crop_w) / 2 );
      $crop_y = intval ( ($src_height - $crop_h) / 2 );
      break;
     case 'east' :
      $crop_x = $src_width - $crop_w;
      $crop_y = intval ( ($src_height - $crop_h) / 2 );
      break;
     case 'south_west' :
      $crop_x = 0;
      $crop_y = $src_height - $crop_h;
      break;
     case 'south' :
      $crop_x = intval ( ($src_width - $crop_w) / 2 );
      $crop_y = $src_height - $crop_h;
      break;
     case 'south_east' :
      $crop_x = $src_width - $crop_w;
      $crop_y = $src_height - $crop_h;
      break;
     default :
      $crop_x = intval ( ($src_width - $crop_w) / 2 );
      $crop_y = intval ( ($src_height - $crop_h) / 2 );
    }

$image = $this->image;
    $canvas = new Imagick ();

if ($this->type == 'gif') {
     $images = $image->coalesceImages ();
     foreach ( $images as $frame ) {
      $img = new Imagick ();
      $img->readImageBlob ( $frame );
      $img->cropImage ( $crop_w, $crop_h, $crop_x, $crop_y );
      $img->thumbnailImage ( $width, $height, true );

$canvas->addImage ( $img );
      $canvas->setImageDelay ( $img->getImageDelay () );
      $canvas->setImagePage ( $width, $height, 0, 0 );
     }
    } else {
     $image->cropImage ( $crop_w, $crop_h, $crop_x, $crop_y );
     $image->thumbnailImage ( $width, $height, true );
     $canvas->addImage ( $image );
     $canvas->setImagePage ( $width, $height, 0, 0 );
    }
    $image->destroy ();
    $this->image = $canvas;
  }
 }

// 添加水印图片
 public function add_watermark($path, $x = 0, $y = 0) {
  $watermark = new Imagick ( $path );
  $draw = new ImagickDraw ();
  $draw->composite ( $watermark->getImageCompose (), $x, $y, $watermark->getImageWidth (), $watermark->getimageheight (), $watermark );

if ($this->type == 'gif') {
   $image = $this->image;
   $canvas = new Imagick ();
   $images = $image->coalesceImages ();
   foreach ( $image as $frame ) {
    $img = new Imagick ();
    $img->readImageBlob ( $frame );
    $img->drawImage ( $draw );

$canvas->addImage ( $img );
    $canvas->setImageDelay ( $img->getImageDelay () );
   }
   $image->destroy ();
   $this->image = $canvas;
  } else {
   $this->image->drawImage ( $draw );
  }
 }

// 添加水印文字
 public function add_text($text, $x = 0, $y = 0, $angle = 0, $style = array()) {
  $draw = new ImagickDraw ();
  if (isset ( $style ['font'] ))
   $draw->setFont ( $style ['font'] );
  if (isset ( $style ['font_size'] ))
   $draw->setFontSize ( $style ['font_size'] );
  if (isset ( $style ['fill_color'] ))
   $draw->setFillColor ( $style ['fill_color'] );
  if (isset ( $style ['under_color'] ))
   $draw->setTextUnderColor ( $style ['under_color'] );

if ($this->type == 'gif') {
   foreach ( $this->image as $frame ) {
    $frame->annotateImage ( $draw, $x, $y, $angle, $text );
   }
  } else {
   $this->image->annotateImage ( $draw, $x, $y, $angle, $text );
  }
 }

// 保存到指定路径
 public function save_to($path) {
  //压缩图片质量
  $this->image->setImageFormat('JPEG');
  $this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
  $a = $this->image->getImageCompressionQuality() * 0.60;
  if ($a == 0) {
   $a = 60;
  }
  $this->image->setImageCompressionQuality($a);
  $this->image->stripImage();

if ($this->type == 'gif') {
   $this->image->writeImages ( $path, true );
  } else {
   $this->image->writeImage ( $path );
  }
 }

// 输出图像
 public function output($header = true) {
  if ($header)
   header ( 'Content-type: ' . $this->type );
  echo $this->image->getImagesBlob ();
 }
 public function get_width() {
  $size = $this->image->getImagePage ();
  return $size ['width'];
 }
 public function get_height() {
  $size = $this->image->getImagePage ();
  return $size ['height'];
 }

// 设置图像类型, 默认与源类型一致
 public function set_type($type = 'png') {
  $this->type = $type;
  $this->image->setImageFormat ( $type );
 }

// 获取源图像类型
 public function get_type() {
  return $this->type;
 }

public function get_file_size(){
  if($this->image){
   return 0;//$this->image->getImageLength(); getImageLength not find
  }else{
   return 0;
  }
 }

public function get_file_type(){
  if($this->image){
   return $this->image->getimagemimetype();
  }else{
   return 0;
  }
 }

public function get_sha1(){
  if($this->image){
   return sha1($this->image->__tostring());
  }else{
   return '';
  }
 }

// 当前对象是否为图片
 public function is_image() {
  if ($this->image)
   return true;
  else
   return false;
 }

/*
  * 添加一个边框 $width: 左右边框宽度 $height: 上下边框宽度 $color: 颜色: RGB 颜色 'rgb(255,0,0)' 或 16进制颜色 '#FF0000' 或颜色单词 'white'/'red'...
  */
 public function border($width, $height, $color = 'rgb(220, 220, 220)') {
  $color = new ImagickPixel ();
  $color->setColor ( $color );
  $this->image->borderImage ( $color, $width, $height );
 }
 public function blur($radius, $sigma) {
  $this->image->blurImage ( $radius, $sigma );
 } // 模糊
 public function gaussian_blur($radius, $sigma) {
  $this->image->gaussianBlurImage ( $radius, $sigma );
 } // 高斯模糊
 public function motion_blur($radius, $sigma, $angle) {
  $this->image->motionBlurImage ( $radius, $sigma, $angle );
 } // 运动模糊
 public function radial_blur($radius) {
  $this->image->radialBlurImage ( $radius );
 } // 径向模糊
 public function add_noise($type = null) {
  $this->image->addNoiseImage ( $type == null ? imagick::NOISE_IMPULSE : $type );
 } // 添加噪点
 public function level($black_point, $gamma, $white_point) {
  $this->image->levelImage ( $black_point, $gamma, $white_point );
 } // 调整色阶
 public function modulate($brightness, $saturation, $hue) {
  $this->image->modulateImage ( $brightness, $saturation, $hue );
 } // 调整亮度、饱和度、色调
 public function charcoal($radius, $sigma) {
  $this->image->charcoalImage ( $radius, $sigma );
 } // 素描
 public function oil_paint($radius) {
  $this->image->oilPaintImage ( $radius );
 } // 油画效果
 public function flop() {
  $this->image->flopImage ();
 } // 水平翻转
 public function flip() {
  $this->image->flipImage ();
 } // 垂直翻转
}

(0)

相关推荐

  • PHP实现图片裁剪、添加水印效果代码

    3.PHP对图像的裁剪 <div> <h4>裁剪之前</h4> <img src="1.png" style="border:1px solid red;"> </div> <?php header("content-type","text/html;charset=utf-8"); /* *图片裁剪 *@param string $filename 图片的ur

  • php+js实现图片的上传、裁剪、预览、提交示例

    首先用到的语言是php.插件imgareaselect(下载地址),没有太多花哨的样式,index.php代码如下: 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.or

  • PHP实现的自定义图像居中裁剪函数示例【测试可用】

    本文实例讲述了PHP实现的自定义图像居中裁剪函数.分享给大家供大家参考,具体如下: 图像居中裁减的大致思路: 1.首先将图像进行缩放,使得缩放后的图像能够恰好覆盖裁减区域.(imagecopyresampled - 重采样拷贝部分图像并调整大小) 2.将缩放后的图像放置在裁减区域中间.(imagecopy - 拷贝图像的一部分) 3.裁减图像并保存.(imagejpeg | imagepng | imagegif - 输出图象到浏览器或文件) 具体代码: //==================

  • PHP图像裁剪缩略裁切类源码及使用方法

    最近在做网页拖拽验证码的开源项目,需要在服务端生成图片对应的可移动的色块,但是网上的资源都是做缩略图,对整个图片进行缩放的,所以自己动手,完成了对图片进行裁剪小块的工具 <?php namespace App\Libs; /** * 2016-01-07 15:54:58 * Lixiaoyu * * mode 1 : 强制裁剪,生成图片严格按照需要,不足放大,超过裁剪,图片始终铺满 * mode 2 : 和1类似,但不足的时候 不放大 会产生补白,可以用png消除. * mode 3 : 只缩

  • JQuery PHP图片在线裁剪实例

    / * Goofy 2011-11-29 * 图像处理:根据传递过来的坐标参数,x,y,w,h,依次为选取的x坐标,y坐标,w宽度,h高度 通过imagecopy()方法将该区域copy至第一步创建的空白图像中 注意,在创建图像的时候要用imagecreatetruecolor()真彩色,不然用imagecreate()图片会失真 */ 自由图片剪切 无比例 <?php /** * Goofy 2011-11-29 * 图像处理:根据传递过来的坐标参数,x,y,w,h,依次为选取的x坐标,y坐标

  • PHP加Nginx实现动态裁剪图片方案

    许久以前写过一篇也是关于高性能PHP图片动态裁剪方案的文章,那文章使用的是nginx Cache和rewrite实现的,当然再加上CDN,那个方案存在一个问题就是图片并没有实际生成,而是以二进制的形式存在缓存中.如果缓存失效了那么还需要请求php再次生成.如果说到区别这是我暂且认为的吧.利用空余时间,新增了静态生成图片支持,支持对图片3种模式切换,在门户网站自动对图片尺寸进行裁剪,减少服务器带宽,理论上应该也满足了业务的需求吧,图片裁剪使用了Imagick组件. 一.思路再现:1.先写好请求服务

  • php结合imgareaselect实现图片裁剪

    引用CSS /js/jquery.imgareaselect-0.9.10/css/imgareaselect-default.css 引用js /js/jquery.imgareaselect-0.9.10/scripts/jquery.imgareaselect.min.js /js/AjaxFileUploaderV2.1/ajaxfileupload.js html <div> <img src='blank.jpg' id="mainimg"> <

  • PHP 裁剪图片成固定大小代码方法

    做一个首页调用图像,有时候往往需要获得固定大小的图像,因为首页的图像位置通常由设计人员指定好了,如果是做最新发布图像调用,因为不知道客户会上传什么比例的图像,所以,有时候也就没有办法确定图像的比例,前台页面编写人员通常会采用固定 img 元素高宽的办法来达到控制图像不溢出,但如果图像的比例不是需要的比例,就会造成图像调用后变形,很大程度上影响了页面的美观,有解决的方法是,按照原图比例进行缩放,缩放后的图像难免会有空白,空白处填以颜色,这样虽然图像不变形了,但这样会有很多问题,比如,如果用户发一个

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

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

  • PHP图片裁剪函数(保持图像不变形)

    为了完成图片上传之后自动的裁剪,然后在前台显示出裁剪出的图片.需求如上,源码如下: 复制代码 代码如下: <? *exif_imagetype -- 判断一个图像的类型 *说明:函数功能是把一个图像裁剪为任意大小的图像,图像不变形 * 参数说明:输入 需要处理图片的 文件名,生成新图片的保存文件名,生成新图片的宽,生成新图片的高 */ // 获得任意大小图像,不足地方拉伸,不产生变形,不留下空白         function my_image_resize($src_file, $dst_f

  • thinkPHP框架实现图像裁剪、缩放、加水印的方法

    本文实例讲述了thinkPHP框架实现图像裁剪.缩放.加水印的方法.分享给大家供大家参考,具体如下: ThinkPHP 图片处理函数,需要文字水印字体,可在windows下 控制面板 > 大图标(右上角) > 字体 找到需要的字体 /** * 图像的裁剪.缩放.加水印 * @param string $path 路径 * @param int $width 裁剪的宽度/限制的高度或宽度,当有$height值时此值为图片的宽度,否则为限制的宽度或高度 * @param int $height [

  • 使用gd库实现php服务端图片裁剪和生成缩略图功能分享

    裁剪示例: 最终裁剪成的图片: 其中虚线框内就是要裁剪出来的图片,最终保存成100宽的图片.代码如下: 复制代码 代码如下: $src_path = '1.jpg';//创建源图的实例$src = imagecreatefromstring(file_get_contents($src_path)); //裁剪开区域左上角的点的坐标$x = 100;$y = 12;//裁剪区域的宽和高$width = 200;$height = 200;//最终保存成图片的宽和高,和源要等比例,否则会变形$fi

随机推荐