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扩展服务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 ();
} // 垂直翻转
}
您可能感兴趣的文章:
php使用imagick模块实现图片缩放、裁剪、压缩示例的更多相关文章
- 如何安装nginx_lua_module模块,升级nginx,nginx-lua-fastdfs-GraphicsMagick动态生成缩略图,实现图片自动裁剪缩放
如何安装nginx_lua_module模块,升级nginx,nginx-lua-fastdfs-GraphicsMagick动态生成缩略图,实现图片自动裁剪缩放 参考网站:nginx-lua-fas ...
- PHP图片裁剪_图片缩放_PHP生成缩略图
在制作网页过程中,为了排版整齐美观,对网页中的图片处理成固定大小尺寸的图片,或是要截去图片边角中含有水印的图片,对于图片量多,每天更新大量图,靠人工PS处理是不现实的,那么有没有自动处理图片的程序了! ...
- java多图片上传--前端实现预览--图片压缩 、图片缩放,区域裁剪,水印,旋转,保持比例。
java多图片上传--前端实现预览 前端代码: https://pan.baidu.com/s/1cqKbmjBSXOhFX4HR1XGkyQ 解压后: java后台: <!--文件上传--&g ...
- C#开发自动照片(图片)裁剪(缩放)工具
1.需求分析 用winform窗体程序,开发一个能够自动.批量对图片进行缩放和裁剪的程序. 原本想直接从网上找类型的工具直接用,但是无奈现在网上能找到的工具,要么不能用,要么就是很 恶心的下载完后还有 ...
- C#设计模式总结 C#设计模式(22)——访问者模式(Vistor Pattern) C#设计模式总结 .NET Core launch.json 简介 利用Bootstrap Paginator插件和knockout.js完成分页功能 图片在线裁剪和图片上传总结 循序渐进学.Net Core Web Api开发系列【2】:利用Swagger调试WebApi
C#设计模式总结 一. 设计原则 使用设计模式的根本原因是适应变化,提高代码复用率,使软件更具有可维护性和可扩展性.并且,在进行设计的时候,也需要遵循以下几个原则:单一职责原则.开放封闭原则.里氏代替 ...
- Android处理Bitmap使其能够不失真等比缩放裁剪后显示在ImageView上
Android开发过程中,我们有时需要动态得显示一些图片,并且这些图片的大小差距会十分大,如果需求并不是需要图片完整显示,但是需要不失真,并且要图片中间部分的情况下,我们需要做一系列处理,因为这个时候 ...
- Android调用相机实现拍照并裁剪图片,调用手机中的相冊图片并裁剪图片
在 Android应用中,非常多时候我们须要实现上传图片,或者直接调用手机上的拍照功能拍照处理然后直接显示并上传功能,以下将讲述调用相机拍照处理图片然后显示和调用手机相冊中的图片处理然后显示的功能,要 ...
- 通过Nginx訪问FastDFS文件系统并进行图片文件裁剪的性能測试和分析
前段时间公司的分布式图片文件系统(FastDFS)做了图片裁剪和缩放功能,并把缩放计算和FastDFS做了解耦分离,前端用虚拟机作为图片文件缩放的訪问代理层(Nginx Proxy),后端使用ngin ...
- CSS实现图片缩放特效
今天是感恩节,祝大家感恩节快乐哦!最近天冷了,大家注意保暖哟.下面一起看看小颖写的demo吧. html代码: <!DOCTYPE html> <html> <head& ...
随机推荐
- the-swift-programming-language 学习笔记
常量和变量 常量是定义是不可以修改的,在类中定义的常量,可以在构造函数中赋值.let修饰变量是可以修改的.var修饰字符串中字符的遍历for code in string {}for codeunit ...
- Codeforces E. Bash Plays with Functions(积性函数DP)
链接 codeforces 题解 结论:\(f_0(n)=2^{n的质因子个数}\)= 根据性质可知\(f_0()\)是一个积性函数 对于\(f_{r+1}()\)化一下式子 对于 \[f_{r+1} ...
- SQL表操作习题1
建表
- CRUD_PreparedStatement
package songyan.jdbc.crud; import java.sql.Connection; import java.sql.PreparedStatement; import jav ...
- sourceinsight tab 空格 对齐 等宽字体
参考:http://bbs.chinaunix.net/thread-587409-1-1.html 1. SMART TAB的用法. 解决自动缩进. 新开一个PROJECT后,点Options-&g ...
- 获取textview行数
获取textview行数 textview 代码 import android.content.Context; import android.graphics.Canvas; import andr ...
- Cocos2dx 粒子销毁问题
Cocos2dx 粒子销毁问题 DionysosLai(906391500@qq.com) 2014-7-3 之前在调试粒子特效时,在粒子编辑器有个选项是用来调整粒子的生命时间,当粒子存在的时间 ...
- 对tensorflow 中的attention encoder-decoder模型调试分析
#-*-coding:utf8-*- __author = "buyizhiyou" __date = "2017-11-21" import random, ...
- 使用老版本的java api提交hadoop作业
还是使用之前的单词计数的例子 自定义Mapper类 import java.io.IOException; import org.apache.hadoop.io.LongWritable; impo ...
- cmd.exe启动参数说明
启动命令解释程序 Cmd.exe 的新范例.如果在不含参数的情况下使用,cmd 将显示操作系统的版本和版权信息. 语法 cmd [{/c | /k}] [/s] [/q] [/d] [{/a | /u ...