-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsfImage.class.php
572 lines (492 loc) · 11.9 KB
/
sfImage.class.php
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
<?php
/*
* This file is part of the sfImageTransform package.
* (c) 2007 Stuart Lowes <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
* sfImage class.
*
* A container class for the image resource.
*
* This class allows the manipulation of sfImage using sub classes of the abstract sfImageTranform class.
*
* Example 1 Chaining
*
* <code>
* <?php
* $img = new sfImage('image1.jpg', 'image/png', 'GD');
* $response = $this->getResponse();
* $response->setContentType($img->getMIMEType());
* $response->setContent($img->resize(1000,null)->overlay(sfImage('logo.png','','')));
* ?>
* </code>
*
* Example 2 Standalone
* <code>
* $img = new sfImage('image1.jpg', 'image/jpg', 'ImageMagick');
* $t = new sfImageScale(0.5);
* $img = $t->execute($img);
* $img->save('image2.jpg', 'image/jpg');
* </code>
*
* @package sfImageTransform
* @author Stuart Lowes <[email protected]>
* @version SVN: $Id$
*/
class sfImage
{
/**
* The adapter class.
* @access protected
* @var object
*/
protected $adapter;
/*
* MIME type map and their associated file extension(s)
* @var array
*/
protected $types = array(
'image/gif' => array('gif'),
'image/jpeg' => array('jpg', 'jpeg'),
'image/png' => array('png'),
'image/svg' => array('svg'),
'image/tiff' => array('tiff')
);
/**
* Construct an sfImage object.
* @access public
* @param string Filename of the image to be loaded
* @param string File MIME type
* @param string Name of a supported adapter
*/
public function __construct($filename='', $mime='', $adapter='')
{
$this->setAdapter($this->createAdapter($adapter));
// Set the Image source if passed
if ($filename !== '')
{
$this->load($filename, $mime);
}
// Otherwise create a new blank image
else
{
$this->create();
}
}
/**
* Gets the image library adapter object
* @access public
* @param object
*/
public function getAdapter()
{
return $this->adapter;
}
/**
* Sets the adapter to be used, i.e. GD or ImageMagick
*
* @access public
* @param object $adapter Instance of adapter object to be used
*/
public function setAdapter($adapter)
{
if (is_object($adapter))
{
$this->adapter = $adapter;
return true;
}
return false;
}
/**
* Creates a blank image
*
* Default is GD but the adapter can be set by app_sfImageTransformPlugin_adapter
*
* @access public
* @param integer Width of image
* @param integer Height of image
* @param string Backfground color of image
*/
public function create($x=null, $y=null, $color=null)
{
$defaults = sfConfig::get('app_sfImageTransformPlugin_default_image',array('filename' => 'Untitled.png', 'mime_type' => 'image/png', 'width' => 100, 'height' => 100));
// Get default width
if (!is_numeric($x))
{
$x = 1;
if (isset($defaults['width']))
{
$x = (int)$defaults['width'];
}
}
// Get default height
if (!is_numeric($y))
{
$y = 1;
if (isset($defaults['height']))
{
$y = (int)$defaults['height'];
}
}
$this->getAdapter()->create($x, $y);
$this->getAdapter()->setFilename($defaults['filename']);
// Set the image color if set
if(is_null($color))
{
$color = '#FFFFFF';
if(isset($defaults['color']))
{
$color = $defaults['color'];
}
}
$this->fill(0, 0, $color);
return $this;
}
/**
* Loads image from disk
*
* Loads an image of specified MIME type from the filesystem
*
* @access public
* @param string Name of image file
* @param string MIME type of image
* @return sfImage
*/
public function load($filename, $mime='')
{
if (file_exists($filename) && is_readable($filename))
{
if ('' == $mime)
{
$mime = $this->autoDetectMIMETypeFromFile($filename);
}
if ('' == $mime)
{
throw new sfImageTransformException(sprintf('You must either specify the MIME type for file %s or enable mime detection',$filename));
}
$this->getAdapter()->load($filename,$mime);
return $this;
}
throw new sfImageTransformException(sprintf('Unable to load %s. File does not exist or is unreadable',$filename));
}
/**
* Loads image from a string
*
* Loads the image from a string
*
* @access public
* @param string Image string
* @preturn sfImage
*/
public function loadString($string)
{
$this->getAdapter()->loadString($string);
return $this;
}
/**
* Saves the image to disk
*
* Saves the image to the filesystem
*
* @access public
* @param string
* @return boolean
*/
public function save()
{
return $this->getAdapter()->save();
}
/**
* Saves the image to the specified filename
*
* Allows the saving to a different filename
*
* @access public
* @param string Filename
* @param string MIME type
* @return sfImage
*/
public function saveAs($filename, $mime='')
{
if ('' === $mime)
{
$mime = $this->autoDetectMIMETypeFromFilename($filename);
}
if (!$mime)
{
throw new sfImageTransformException(sprintf('Unsupported file %s',$filename));
}
$copy = $this->copy();
$copy->getAdapter()->saveAs($filename, $mime);
return $copy;
}
/**
* Copies the image object and returns it
*
* Returns a copy of the sfImage object
*
* @access public
* @return sfImage
*/
public function copy()
{
$copy = clone $this;
$copy->setAdapter($this->getAdapter()->copy());
return $copy;
}
/**
* Magic method. Converts the image to a string
*
* Returns the image as a string
*
* @access public
* @return string
*/
public function __toString()
{
return $this->toString();
}
/**
* Converts the image to a string
*
* Returns the image as a string
*
* @access public
* @return string
*/
public function toString()
{
return (string)$this->getAdapter();
}
/**
* Magic method. This allows the calling of execute tranform methods on sfImageTranform objects.
*
* @method
* @param string $name the name of the transform, sfImage<NAME>
* @param array Arguments for the transform class execute method
* @return sfImage
*/
public function __call($name, $arguments)
{
$class_generic = 'sfImage'.ucfirst($name) . 'Generic';
$class_adapter = 'sfImage'.ucfirst($name) . $this->getAdapter()->getAdapterName();
$class = null;
// Make sure a transform class exists, either generic or adapter specific, otherwise throw an exception
// Defaults to adapter transform
if (class_exists($class_adapter,true))
{
$class = $class_adapter;
}
// No adapter specific transform so look for a generic transform
elseif (class_exists($class_generic,true))
{
$class = $class_generic;
}
// Cannot find the transform class so throw an exception
else
{
throw new sfImageTransformException(sprintf('Unsupported transform %s. Cannot find %s adapter or generic transform class',$name, $this->getAdapter()->getAdapterName()));
}
$reflectionObj = new ReflectionClass($class);
if (is_array($arguments) && count($arguments) > 0)
{
$transform = $reflectionObj->newInstanceArgs($arguments);
}
else
{
$transform = $reflectionObj->newInstance();
}
$transform->execute($this);
// Tidy up
unset($transform);
// So we can chain transforms return the reference to itself
return $this;
}
/**
* Sets the image filename
* @param string
* @return boolean
*/
public function setFilename($filename)
{
return $this->getAdapter()->setFilename($filename);
}
/**
* Returns the image full filename
* @return string The filename of the image
*
*/
public function getFilename()
{
return $this->getAdapter()->getFilename();
}
/**
* Returns the image pixel width
* @return integer
*
*/
public function getWidth()
{
return $this->getAdapter()->getWidth();
}
/**
* Returns the image height
* @return integer
*
*/
public function getHeight()
{
return $this->getAdapter()->getHeight();
}
/**
* Sets the MIME type
* @param string
*
*/
public function setMIMEType($mime)
{
$this->getAdapter()->setMIMEType($mime);
}
/**
* Returns the MIME type
* @return string
*
*/
public function getMIMEType()
{
return $this->getAdapter()->getMIMEType();
}
/**
* Sets the image quality
* @param integer Valid range is from 0 (worst) to 100 (best)
*
*/
public function setQuality($quality)
{
$this->getAdapter()->setQuality($quality);
}
/**
* Returns the image quality
* @return string
*
*/
public function getQuality()
{
return $this->getAdapter()->getQuality();
}
/**
* Returns mime type from the specified file type. Returns false for unsupported types
* @access protected
* @return string or boolean
*/
protected function autoDetectMIMETypeFromFilename($filename)
{
$pathinfo = pathinfo($filename);
foreach($this->types as $mime => $extension)
{
if (in_array(strtolower($pathinfo['extension']),$extension))
{
return $mime;
}
}
return false;
}
/**
* Returns mime type from the actual file using a detection library
* @access protected
* @return string or boolean
*/
protected function autoDetectMIMETypeFromFile($filename)
{
$settings = sfConfig::get('app_sfImageTransformPlugin_mime_type','GD');
$support_libraries = array('fileinfo', 'mime_type', 'gd_mime_type');
if (false === $settings['auto_detect'])
{
return false;
}
if (in_array(strtolower($settings['library']), $support_libraries) && '' !== $filename)
{
if('gd_mime_type' === strtolower($settings['library']))
{
if (!extension_loaded('gd'))
{
throw new Exception ('GD not enabled. Cannot detect mime type using GD.');
}
$imgData = GetImageSize($filename);
if (isset($imgData['mime']))
{
return $imgData['mime'];
}
else
{
return false;
}
}
if ('fileinfo' === strtolower($settings["library"]))
{
if(function_exists('finfo_file'))
{
// Support for PHP 5.3+
if(defined(FILEINFO_MIME_TYPE))
{
$finfo = finfo_open(FILEINFO_MIME_TYPE);
}
else
{
$finfo = finfo_open(FILEINFO_MIME);
}
return finfo_file($finfo, $filename);
}
}
if ('mime_type' === strtolower($settings["library"]))
{
// Supressing warning as PEAR is not strict compliant
@require_once 'MIME/Type.php';
if (method_exists('MIME_Type', 'autoDetect'))
{
return @MIME_Type::autoDetect($filename);
}
}
}
return false;
}
/**
* Returns a adapter class of the specified type
* @access protected
* @return string or boolean
*/
protected function createAdapter($name)
{
// No adapter set so use default
if ($name == '')
{
$name = sfConfig::get('app_sfImageTransformPlugin_default_adapter','GD');
}
$adapter_class = 'sfImageTransform' . $name . 'Adapter';
if (class_exists($adapter_class))
{
$adapter = new $adapter_class;
}
// Cannot find the adapter class so throw an exception
else
{
throw new sfImageTransformException(sprintf('Unsupported adapter: %s',$adapter_class));
}
return $adapter;
}
/**
* Copies the image object and returns it
*
* Returns a copy of the sfImage object
*
* @return sfImage
*/
public function __clone()
{
$this->adapter = $this->adapter->copy();
}
}