Gmagick.class.php
13.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<?php
/**
* PHP Gmagick的使用类
*
* @example
* <pre>
* $gm = new Util_Image_Gmagick('test.jpg');
* 1. 缩略图 (对应原来切图模式: 1)
* $gm->thumbnail(100, 100)->compress()->save('test1.jpg');
* 2. 背景贴图 (对应原来切图模式: 2)
* $gm->paste(100, 100)->compress()->save('test2.jpg');
* 3. 剪切图片 (对应原来切图模式: 3)
* $gm->crop(100, 100)->compress()->save('test3.jpg');
* 4. 缩放尺寸 (对应原来切图模式: 4)
* $gm->resize(100, 100)->compress()->save('test4.jpg');
* 5. 缩略并剪切中间 (对应原来切图模式: 5)
* $gm->autoCrop(100, 100)->compress()->save('test5.jpg');
* 6. 自定义的切图 (根据yoho.cn业务需求)
* $gm->customCrop(100, 100)->compress()->save('test6.jpg');
* </pre>
*
* @name Util_Image_Gmagick
* @package Util/Image
* @copyright yoho.inc
* @version 1.3 (2013-09-16 09:11:27)
* @author fei.hong <hf@yoho.cn>
* @since 1.0 (2012-11-20 16:33:29)
* @see http://docs.php.net/manual/zh/book.gmagick.php
*/
class Util_Image_Gmagick implements Util_Image_Interface
{
/**
* @var object (Gmagick)
*/
private $_handle;
/**
* @var integer (宽度)
*/
private $_width;
/**
* @var integer (高度)
*/
private $_height;
/**
* @var object (FastDFSClient)
*/
private $_fastdfsHandle;
/**
* @var boolean (fastdfs状态)
*/
private $_fastdfsStatus = false;
/**
* @var boolean (静态化图片的开关)
* @since 1.2
*/
private $_flatten = false;
/**
* @var string (格式)
* @since 1.2
*/
private $_format;
/**
* 构造函数
*
* @param string $filename (源图片路径)
* @param boolean $fastdfsStatus (是否启用fastdfs)
*/
public function __construct($filename, $fastdfsStatus = false)
{
if ($fastdfsStatus)
{
$this->_handle = new Gmagick();
$this->_fastdfsHandle = new Util_Fastdfs();
$filestream = $this->_fastdfsHandle->read($filename);
$this->_handle->readImageBlob($filestream);
$this->_fastdfsStatus = $fastdfsStatus;
}
else
{
$this->_handle = new Gmagick($filename);
}
$this->_width = $this->_handle->getimagewidth();
$this->_height = $this->_handle->getimageheight();
$this->_format = strtolower($this->_handle->getimageformat());
}
/**
* 析构函数
*/
public function __destruct()
{
if (null !== $this->_handle)
{
$this->_handle->clear();
$this->_handle->destroy();
$this->_handle = null;
}
if ($this->_fastdfsStatus)
{
$this->_fastdfsHandle->close();
$this->_fastdfsHandle = null;
}
}
/**
* 缩略图
*
* 更改图像大小为指定的尺寸, 并清除图片的所有相关属性信息. (体积小)
*
* @param integer $w (缩略宽度, 当数值<=0或>=9999时表示按高度等比例缩放)
* @param integer $h (缩略高度, 当数值<=0或>=9999时表示按宽度等比例缩放)
* @param boolean $fit (控制是否按照宽高的最大值等比例缩放)
* @return object
*/
public function thumbnail($w, $h, $fit = true)
{
$this->compareSize($w, $h, __FUNCTION__);
if ($h === 0 || $w === 0)
{
$fit = false;
}
$this->_handle->scaleimage($w, $h, $fit);
$this->_handle->thumbnailimage($w, $h, $fit);
return $this;
}
/**
* 缩放图片尺寸
*
* 缩放图像到所需的尺寸(宽高), 可以带上滤镜效果.
*
* 滤镜使用 @see http://www.php.net/manual/zh/gmagick.constants.php
*
* @param integer $w (缩放宽度)
* @param integer $h (缩放高度)
* @param boolean $fit (控制是否按照宽高的最大值等比例缩放)
* @return object
*/
public function resize($w, $h, $fit = true)
{
$this->compareSize($w, $h, __FUNCTION__);
$this->_handle->resizeimage($w, $h, Gmagick::FILTER_CATROM, 1, $fit);
return $this;
}
/**
* 背景贴图
*
* 生成一下指定背景的画布图, 再将图片复合贴在画布背景图的指定位置上.
*
* @param integer $w (需求宽度)
* @param integer $h (需求高度)
* @param string $bg (背景图片)
* @return object
*/
public function paste($w, $h, $bg = '#FFFFFF')
{
$this->compareSize($w, $h, __FUNCTION__);
// 如里需求图片的尺寸小于原图片的尺寸, 则生成缩略图
if ($w <= $this->_width && $h <= $this->_height)
{
$this->_handle->resizeimage($w, $h, Gmagick::FILTER_CATROM, 1, true);
return $this;
}
if ($w < $this->_width || $h < $this->_height)
{
// 缩放图片
$this->_handle->scaleimage($w, $h, true);
// 缩放宽高
$sw = $this->_handle->getimagewidth();
$sh = $this->_handle->getimageheight();
// 计算位置
$x = ($w - $sw) / 2;
$y = ($h - $sh) / 2;
}
else
{
$x = ($w - $this->_width) / 2;
$y = ($h - $this->_height) / 2;
}
// 新建背景图层
$canvas = new Gmagick();
$canvas->newimage($w, $h, $bg, $this->_format);
// 将图片贴在背景图层上
$this->_handle = $canvas->compositeimage($this->_handle, Gmagick::COMPOSITE_OVER, $x, $y);
return $this;
}
/**
* 剪切图片
*
* 提取图像的一个指定区域. 默认是从原图片的左上角坐标(0,0)到($w,$h)的这个区域.
*
* @param integer $w (剪切宽度)
* @param integer $h (剪切高度)
* @param integer $x (坐标X轴位置)
* @param integer $y (坐标Y轴位置)
* @return object
*/
public function crop($w, $h, $x = 0, $y = 0)
{
$this->compareSize($w, $h, __FUNCTION__);
$this->_handle->cropimage($w, $h, $x, $y);
return $this;
}
/**
* 自动切图
*
* 先缩放图像, 再从中心指定的区域剪切图片, 创建一个固定宽度和高度的缩略图.
*
* @param integer $w (宽度)
* @param integer $h (高度)
* @return object
*/
public function autoCrop($w, $h)
{
$this->compareSize($w, $h, __FUNCTION__);
$this->_handle->cropthumbnailimage($w, $h);
return $this;
}
/**
* [yoho.cn]自定义切图
*
* @param integer $w (剪切宽度, 当数值<=0或>=9999表示最大宽度)
* @param integer $h (剪切高度, 当数值<=0或>=9999表示最大高度)
* @return object
* @since 1.1
*/
public function customCrop($w, $h)
{
if ($w >= $this->_width && $h >= $this->_height)
{
return $this->paste($w, $h);
}
$this->compareSize($w, $h, __FUNCTION__);
// 获取自定义的缩放比例
list($sw, $sh) = $this->getScale($w, $h);
// 水平居中剪切
if ($sw > $w && $this->_width >= $this->_height)
{
$this->_handle->resizeimage($sw, $sh, Gmagick::FILTER_CATROM, 1, false);
$this->_handle->cropimage($w, $h, ($sw - $w) / 2, 0);
}
// 垂直上下剪切
elseif ($sh > $h)
{
$this->_handle->resizeimage($sw, $sh, Gmagick::FILTER_CATROM, 1, false);
$this->_handle->cropimage($w, $h, 0, 0);
}
// 白色背景贴图
else
{
$this->paste($w, $h);
}
return $this;
}
/**
* [yoho.cn] 自定义的活动瀑布流的切图
*
* @param integer $w (剪切宽度)
* @param integer $h (剪切高度)
* @return object
* @since 1.3
* @see http://wiki.yoho.cn/#789-zh
*/
public function waterfallCrop($w, $h)
{
$this->_handle->thumbnailimage($w, 0, false);
$thumbHeight = $this->_handle->getimageheight();
if ($thumbHeight > $h)
{
$this->_handle->cropimage($w, $h, 0, 0);
}
return $this;
}
/**
* 拼合图片
*
* 作用是将多个图层的图片转变成单一静态化的图片
*
* @return object
* @since 1.1
*/
public function flatten()
{
// 如果: 图片有上一张或下一张图层(存在多张图片如gif动画)
if (!$this->_flatten && ($this->_handle->hasnextimage() || $this->_handle->haspreviousimage()))
{
/**
* @see http://pecl.php.net/bugs/bug.php?id=22435
*/
if (method_exists($this->_handle, 'flattenImages'))
{
$this->_handle = $this->_handle->flattenImages();
}
$this->_flatten = true;
}
return $this;
}
/**
* 压缩图片处理
*
* @param integer $quality (图片的质量)
* @return object
*/
public function compress($quality = 90)
{
// 转换色彩CMYK为RGB
$cs = $this->_handle->getimagecolorspace();
if ($cs == Gmagick::COLORSPACE_CMYK)
{
$this->_handle->setImageColorspace(Gmagick::COLORSPACE_SRGB);
}
// 除去图像的exif档案信息
$this->_handle->stripimage();
// Gmagick设置生成图片质量的方法,Gmagick默认生成的图片质量有点差。
// 这里设置质量为90, 注意设置质量为90以上的(包括90)可能会导致生成后的图片所占的空间比原图还要大,
// 还要注意在write()的时候再设置这个压缩质量,不要在把图片经过各种处理之前设置这个值,
// 这样write的时候质量就不生效了,生成的图片可以用picasa等软件来查看质量。
// 注意: 这是Graphicsmagick1.3.7以上才支持的方法
$this->_handle->setCompressionQuality($quality);
return $this;
}
/**
* 保存图片
*
* @param mixed $filename (指定的文件 | null 源文件)
* @return void
*/
public function save($filename = null)
{
if ($this->_fastdfsStatus)
{
$this->_fastdfsHandle->delete($filename);
$this->_fastdfsHandle->uploadByStream($filename, $this->_handle->getimageblob());
}
else
{
$this->_handle->write($filename);
}
}
/**
* 显示图片
*
* @return string
* @since 1.1
*/
public function show()
{
header('Content-Type: ' . $this->getMimeType($this->_format));
echo $this->_handle->getimageblob();
}
/**
* 获取图片的格式
*/
public function getFormat()
{
return $this->_handle->getimageformat();
}
/**
* 获取缩放的比例 (根据实际业务需求)
*
* @param integer $w (缩放宽度--数值<=0或>=9999:最大宽度)
* @param integer $h (缩放高度--数值<=0或>=9999:最大高度)
* @return array (缩放宽度, 缩放高度)
* @since 1.1
*/
private function getScale($w, $h)
{
// 默认缩放的比例
$sw = $w; $sh = $h;
// 原图与缩略图的宽高比例
$widthRate = $this->_width / $w;
$heightRate = $this->_height / $h;
// 计算缩放的宽高值
if ($widthRate > 1 || $heightRate > 1)
{
if ($widthRate > $heightRate)
{
$sw = $this->_width / $heightRate;
}
else
{
$sh = $this->_height / $widthRate;
}
}
return array($sw, $sh);
}
/**
* 获取图片的MIME类型
*
* @param string $format (图片格式)
* @return string
*/
private function getMimeType($format)
{
$mineType = 'image/jpeg';
switch ($format)
{
case 'jpeg':
case 'jpg':
$mineType = 'image/jpeg';
break;
case 'gif':
$mineType = 'image/gif';
break;
case 'png':
$mineType = 'image/png';
break;
case 'xbm':
$mineType = 'image/xbm';
break;
case 'wbmp':
$mineType = 'image/vnd.wap.wbmp';
break;
}
return $mineType;
}
/**
* 比较原图宽高与需求宽高 (根据实际业务需求)
*
* 比较过程中可能会改变需求的宽和高($w和$h)
*
* @param integer $w (需求的宽度)
* @param integer $h (需求的高度)
* @param string $func (方法名称)
* @return void
* @since 1.2
*/
private function compareSize(&$w, &$h, $func)
{
switch ($func)
{
case 'thumbnail':
($w >= 9999) ? $w = 0 : ($w > $this->_width ? $w = $this->_width : true);
($h >= 9999) ? $h = 0 : ($h > $this->_height ? $h = $this->_height : true);
break;
case 'resize':
case 'crop':
case 'autoCrop':
($w > $this->_height) ? $w = $this->_width : true;
($h > $this->_height) ? $h = $this->_height : true;
break;
case 'customCrop':
case 'paste':
($w >= 9999 || $w <= 0) ? $w = $this->_width : true;
($h >= 9999 || $h <= 0) ? $h = $this->_height : true;
break;
}
}
}