1 <?php
defined('SYSPATH') OR die('No direct script access.');
3 * Support for image manipulation using [GD](http://php.net/GD).
5 * @package Kohana/Image
8 * @copyright (c) 2008-2009 Kohana Team
9 * @license http://kohanaphp.com/license.html
11 class Kohana_Image_GD
extends Image
{
13 // Which GD functions are available?
14 const IMAGEROTATE
= 'imagerotate';
15 const IMAGECONVOLUTION
= 'imageconvolution';
16 const IMAGEFILTER
= 'imagefilter';
17 const IMAGELAYEREFFECT
= 'imagelayereffect';
18 protected static $_available_functions = array();
21 * Checks if GD is enabled and verify that key methods exist, some of which require GD to
22 * be bundled with PHP. Exceptions will be thrown from those methods when GD is not
27 public static function check()
29 if ( ! function_exists('gd_info'))
31 throw new Kohana_Exception('GD is either not installed or not enabled, check your configuration');
34 Image_GD
::IMAGEROTATE
,
35 Image_GD
::IMAGECONVOLUTION
,
36 Image_GD
::IMAGEFILTER
,
37 Image_GD
::IMAGELAYEREFFECT
39 foreach ($functions as $function)
41 Image_GD
::$_available_functions[$function] = function_exists($function);
44 if (defined('GD_VERSION'))
46 // Get the version via a constant, available in PHP 5.2.4+
47 $version = GD_VERSION
;
51 // Get the version information
54 // Extract the version number
55 preg_match('/\d+\.\d+(?:\.\d+)?/', $info['GD Version'], $matches);
57 // Get the major version
58 $version = $matches[0];
61 if ( ! version_compare($version, '2.0.1', '>='))
63 throw new Kohana_Exception('Image_GD requires GD version :required or greater, you have :version',
64 array('required' => '2.0.1', ':version' => $version));
67 return Image_GD
::$_checked = TRUE;
70 // Temporary image resource
73 // Function name to open Image
74 protected $_create_function;
77 * Runs [Image_GD::check] and loads the image.
79 * @param string $file image file path
81 * @throws Kohana_Exception
83 public function __construct($file)
85 if ( ! Image_GD
::$_checked)
87 // Run the install check
91 parent
::__construct($file);
93 // Set the image creation function name
97 $create = 'imagecreatefromjpeg';
100 $create = 'imagecreatefromgif';
103 $create = 'imagecreatefrompng';
107 if ( ! isset($create) OR ! function_exists($create))
109 throw new Kohana_Exception('Installed GD does not support :type images',
110 array(':type' => image_type_to_extension($this->type
, FALSE)));
113 // Save function for future use
114 $this->_create_function
= $create;
116 // Save filename for lazy loading
117 $this->_image
= $this->file
;
121 * Destroys the loaded image to free up resources.
125 public function __destruct()
127 if (is_resource($this->_image
))
129 // Free all resources
130 imagedestroy($this->_image
);
135 * Loads an image into GD.
139 protected function _load_image()
141 if ( ! is_resource($this->_image
))
143 // Gets create function
144 $create = $this->_create_function
;
146 // Open the temporary image
147 $this->_image
= $create($this->file
);
149 // Preserve transparency when saving
150 imagesavealpha($this->_image
, TRUE);
157 * @param integer $width new width
158 * @param integer $height new height
161 protected function _do_resize($width, $height)
163 // Presize width and height
164 $pre_width = $this->width
;
165 $pre_height = $this->height
;
167 // Loads image if not yet loaded
168 $this->_load_image();
170 // Test if we can do a resize without resampling to speed up the final resize
171 if ($width > ($this->width
/ 2) AND $height > ($this->height
/ 2))
173 // The maximum reduction is 10% greater than the final size
174 $reduction_width = round($width * 1.1);
175 $reduction_height = round($height * 1.1);
177 while ($pre_width / 2 > $reduction_width AND $pre_height / 2 > $reduction_height)
179 // Reduce the size using an O(2n) algorithm, until it reaches the maximum reduction
184 // Create the temporary image to copy to
185 $image = $this->_create($pre_width, $pre_height);
187 if (imagecopyresized($image, $this->_image
, 0, 0, 0, 0, $pre_width, $pre_height, $this->width
, $this->height
))
189 // Swap the new image for the old one
190 imagedestroy($this->_image
);
191 $this->_image
= $image;
195 // Create the temporary image to copy to
196 $image = $this->_create($width, $height);
198 // Execute the resize
199 if (imagecopyresampled($image, $this->_image
, 0, 0, 0, 0, $width, $height, $pre_width, $pre_height))
201 // Swap the new image for the old one
202 imagedestroy($this->_image
);
203 $this->_image
= $image;
205 // Reset the width and height
206 $this->width
= imagesx($image);
207 $this->height
= imagesy($image);
214 * @param integer $width new width
215 * @param integer $height new height
216 * @param integer $offset_x offset from the left
217 * @param integer $offset_y offset from the top
220 protected function _do_crop($width, $height, $offset_x, $offset_y)
222 // Create the temporary image to copy to
223 $image = $this->_create($width, $height);
225 // Loads image if not yet loaded
226 $this->_load_image();
229 if (imagecopyresampled($image, $this->_image
, 0, 0, $offset_x, $offset_y, $width, $height, $width, $height))
231 // Swap the new image for the old one
232 imagedestroy($this->_image
);
233 $this->_image
= $image;
235 // Reset the width and height
236 $this->width
= imagesx($image);
237 $this->height
= imagesy($image);
242 * Execute a rotation.
244 * @param integer $degrees degrees to rotate
247 protected function _do_rotate($degrees)
249 if (empty(Image_GD
::$_available_functions[Image_GD
::IMAGEROTATE
]))
251 throw new Kohana_Exception('This method requires :function, which is only available in the bundled version of GD',
252 array(':function' => 'imagerotate'));
255 // Loads image if not yet loaded
256 $this->_load_image();
258 // Transparent black will be used as the background for the uncovered region
259 $transparent = imagecolorallocatealpha($this->_image
, 0, 0, 0, 127);
261 // Rotate, setting the transparent color
262 $image = imagerotate($this->_image
, 360 - $degrees, $transparent, 1);
264 // Save the alpha of the rotated image
265 imagesavealpha($image, TRUE);
267 // Get the width and height of the rotated image
268 $width = imagesx($image);
269 $height = imagesy($image);
271 if (imagecopymerge($this->_image
, $image, 0, 0, 0, 0, $width, $height, 100))
273 // Swap the new image for the old one
274 imagedestroy($this->_image
);
275 $this->_image
= $image;
277 // Reset the width and height
278 $this->width
= $width;
279 $this->height
= $height;
286 * @param integer $direction direction to flip
289 protected function _do_flip($direction)
291 // Create the flipped image
292 $flipped = $this->_create($this->width
, $this->height
);
294 // Loads image if not yet loaded
295 $this->_load_image();
297 if ($direction === Image
::HORIZONTAL
)
299 for ($x = 0; $x < $this->width
; $x++
)
301 // Flip each row from top to bottom
302 imagecopy($flipped, $this->_image
, $x, 0, $this->width
- $x - 1, 0, 1, $this->height
);
307 for ($y = 0; $y < $this->height
; $y++
)
309 // Flip each column from left to right
310 imagecopy($flipped, $this->_image
, 0, $y, 0, $this->height
- $y - 1, $this->width
, 1);
314 // Swap the new image for the old one
315 imagedestroy($this->_image
);
316 $this->_image
= $flipped;
318 // Reset the width and height
319 $this->width
= imagesx($flipped);
320 $this->height
= imagesy($flipped);
326 * @param integer $amount amount to sharpen
329 protected function _do_sharpen($amount)
331 if (empty(Image_GD
::$_available_functions[Image_GD
::IMAGECONVOLUTION
]))
333 throw new Kohana_Exception('This method requires :function, which is only available in the bundled version of GD',
334 array(':function' => 'imageconvolution'));
337 // Loads image if not yet loaded
338 $this->_load_image();
340 // Amount should be in the range of 18-10
341 $amount = round(abs(-18 +
($amount * 0.08)), 2);
343 // Gaussian blur matrix
347 array(-1, $amount, -1),
351 // Perform the sharpen
352 if (imageconvolution($this->_image
, $matrix, $amount - 8, 0))
354 // Reset the width and height
355 $this->width
= imagesx($this->_image
);
356 $this->height
= imagesy($this->_image
);
361 * Execute a reflection.
363 * @param integer $height reflection height
364 * @param integer $opacity reflection opacity
365 * @param boolean $fade_in TRUE to fade out, FALSE to fade in
368 protected function _do_reflection($height, $opacity, $fade_in)
370 if (empty(Image_GD
::$_available_functions[Image_GD
::IMAGEFILTER
]))
372 throw new Kohana_Exception('This method requires :function, which is only available in the bundled version of GD',
373 array(':function' => 'imagefilter'));
376 // Loads image if not yet loaded
377 $this->_load_image();
379 // Convert an opacity range of 0-100 to 127-0
380 $opacity = round(abs(($opacity * 127 / 100) - 127));
384 // Calculate the opacity stepping
385 $stepping = (127 - $opacity) / $height;
389 // Avoid a "divide by zero" error
390 $stepping = 127 / $height;
393 // Create the reflection image
394 $reflection = $this->_create($this->width
, $this->height +
$height);
396 // Copy the image to the reflection
397 imagecopy($reflection, $this->_image
, 0, 0, 0, 0, $this->width
, $this->height
);
399 for ($offset = 0; $height >= $offset; $offset++
)
401 // Read the next line down
402 $src_y = $this->height
- $offset - 1;
404 // Place the line at the bottom of the reflection
405 $dst_y = $this->height +
$offset;
407 if ($fade_in === TRUE)
409 // Start with the most transparent line first
410 $dst_opacity = round($opacity +
($stepping * ($height - $offset)));
414 // Start with the most opaque line first
415 $dst_opacity = round($opacity +
($stepping * $offset));
418 // Create a single line of the image
419 $line = $this->_create($this->width
, 1);
421 // Copy a single line from the current image into the line
422 imagecopy($line, $this->_image
, 0, 0, 0, $src_y, $this->width
, 1);
424 // Colorize the line to add the correct alpha level
425 imagefilter($line, IMG_FILTER_COLORIZE
, 0, 0, 0, $dst_opacity);
427 // Copy a the line into the reflection
428 imagecopy($reflection, $line, 0, $dst_y, 0, 0, $this->width
, 1);
431 // Swap the new image for the old one
432 imagedestroy($this->_image
);
433 $this->_image
= $reflection;
435 // Reset the width and height
436 $this->width
= imagesx($reflection);
437 $this->height
= imagesy($reflection);
441 * Execute a watermarking.
443 * @param Image $image watermarking Image
444 * @param integer $offset_x offset from the left
445 * @param integer $offset_y offset from the top
446 * @param integer $opacity opacity of watermark
449 protected function _do_watermark(Image
$watermark, $offset_x, $offset_y, $opacity)
451 if (empty(Image_GD
::$_available_functions[Image_GD
::IMAGELAYEREFFECT
]))
453 throw new Kohana_Exception('This method requires :function, which is only available in the bundled version of GD',
454 array(':function' => 'imagelayereffect'));
457 // Loads image if not yet loaded
458 $this->_load_image();
460 // Create the watermark image resource
461 $overlay = imagecreatefromstring($watermark->render());
463 imagesavealpha($overlay, TRUE);
465 // Get the width and height of the watermark
466 $width = imagesx($overlay);
467 $height = imagesy($overlay);
471 // Convert an opacity range of 0-100 to 127-0
472 $opacity = round(abs(($opacity * 127 / 100) - 127));
474 // Allocate transparent gray
475 $color = imagecolorallocatealpha($overlay, 127, 127, 127, $opacity);
477 // The transparent image will overlay the watermark
478 imagelayereffect($overlay, IMG_EFFECT_OVERLAY
);
480 // Fill the background with the transparent color
481 imagefilledrectangle($overlay, 0, 0, $width, $height, $color);
484 // Alpha blending must be enabled on the background!
485 imagealphablending($this->_image
, TRUE);
487 if (imagecopy($this->_image
, $overlay, $offset_x, $offset_y, 0, 0, $width, $height))
489 // Destroy the overlay image
490 imagedestroy($overlay);
495 * Execute a background.
497 * @param integer $r red
498 * @param integer $g green
499 * @param integer $b blue
500 * @param integer $opacity opacity
503 protected function _do_background($r, $g, $b, $opacity)
505 // Loads image if not yet loaded
506 $this->_load_image();
508 // Convert an opacity range of 0-100 to 127-0
509 $opacity = round(abs(($opacity * 127 / 100) - 127));
511 // Create a new background
512 $background = $this->_create($this->width
, $this->height
);
514 // Allocate the color
515 $color = imagecolorallocatealpha($background, $r, $g, $b, $opacity);
517 // Fill the image with white
518 imagefilledrectangle($background, 0, 0, $this->width
, $this->height
, $color);
520 // Alpha blending must be enabled on the background!
521 imagealphablending($background, TRUE);
523 // Copy the image onto a white background to remove all transparency
524 if (imagecopy($background, $this->_image
, 0, 0, 0, 0, $this->width
, $this->height
))
526 // Swap the new image for the old one
527 imagedestroy($this->_image
);
528 $this->_image
= $background;
535 * @param string $file new image filename
536 * @param integer $quality quality
539 protected function _do_save($file, $quality)
541 // Loads image if not yet loaded
542 $this->_load_image();
544 // Get the extension of the file
545 $extension = pathinfo($file, PATHINFO_EXTENSION
);
547 // Get the save function and IMAGETYPE
548 list($save, $type) = $this->_save_function($extension, $quality);
550 // Save the image to a file
551 $status = isset($quality) ?
$save($this->_image
, $file, $quality) : $save($this->_image
, $file);
553 if ($status === TRUE AND $type !== $this->type
)
555 // Reset the image type and mime type
557 $this->mime
= image_type_to_mime_type($type);
566 * @param string $type image type: png, jpg, gif, etc
567 * @param integer $quality quality
570 protected function _do_render($type, $quality)
572 // Loads image if not yet loaded
573 $this->_load_image();
575 // Get the save function and IMAGETYPE
576 list($save, $type) = $this->_save_function($type, $quality);
578 // Capture the output
582 $status = isset($quality) ?
$save($this->_image
, NULL, $quality) : $save($this->_image
, NULL);
584 if ($status === TRUE AND $type !== $this->type
)
586 // Reset the image type and mime type
588 $this->mime
= image_type_to_mime_type($type);
591 return ob_get_clean();
595 * Get the GD saving function and image type for this extension.
596 * Also normalizes the quality setting
598 * @param string $extension image type: png, jpg, etc
599 * @param integer $quality image quality
600 * @return array save function, IMAGETYPE_* constant
601 * @throws Kohana_Exception
603 protected function _save_function($extension, & $quality)
607 // Use the current image type
608 $extension = image_type_to_extension($this->type
, FALSE);
611 switch (strtolower($extension))
618 $type = IMAGETYPE_JPEG
;
623 $type = IMAGETYPE_GIF
;
625 // GIFs do not a quality setting
631 $type = IMAGETYPE_PNG
;
633 // Use a compression level of 9 (does not affect quality!)
637 throw new Kohana_Exception('Installed GD does not support :type images',
638 array(':type' => $extension));
642 return array($save, $type);
646 * Create an empty image with the given width and height.
648 * @param integer $width image width
649 * @param integer $height image height
652 protected function _create($width, $height)
654 // Create an empty image
655 $image = imagecreatetruecolor($width, $height);
657 // Do not apply alpha blending
658 imagealphablending($image, FALSE);
661 imagesavealpha($image, TRUE);