/administrator/components/com_zoo/helpers/imagethumbnail.php

https://bitbucket.org/organicdevelopment/joomla-2.5 · PHP · 361 lines · 180 code · 46 blank · 135 comment · 32 complexity · 75a31234ab84f6b0ff7613778ad5a9c7 MD5 · raw file

  1. <?php
  2. /**
  3. * @package com_zoo
  4. * @author YOOtheme http://www.yootheme.com
  5. * @copyright Copyright (C) YOOtheme GmbH
  6. * @license http://www.gnu.org/licenses/gpl.html GNU/GPL
  7. */
  8. /**
  9. * Image thumbnail helper class.
  10. *
  11. * @package Component.Helpers
  12. * @since 2.0
  13. */
  14. class ImageThumbnailHelper extends AppHelper {
  15. /**
  16. * Creates an AppImageThumbnail instance
  17. *
  18. * @param string $file The filepath
  19. *
  20. * @return AppImageThumbnail
  21. *
  22. * @since 2.0
  23. */
  24. public function create($file) {
  25. return $this->app->object->create('AppImageThumbnail', array($file));
  26. }
  27. /**
  28. * Checks for the required php functions
  29. *
  30. * @return boolean
  31. *
  32. * @since 2.0
  33. */
  34. public function check() {
  35. $gd_functions = array(
  36. 'getimagesize',
  37. 'imagecreatefromgif',
  38. 'imagecreatefromjpeg',
  39. 'imagecreatefrompng',
  40. 'imagecreatetruecolor',
  41. 'imagecopyresized',
  42. 'imagecopy',
  43. 'imagegif',
  44. 'imagejpeg',
  45. 'imagepng'
  46. );
  47. foreach ($gd_functions as $name) {
  48. if (!function_exists($name)) return false;
  49. }
  50. return true;
  51. }
  52. }
  53. /**
  54. * Image thumbnail class.
  55. *
  56. * @package Component.Helpers
  57. * @since 2.0
  58. */
  59. class AppImageThumbnail {
  60. /**
  61. * App instance
  62. *
  63. * @var App
  64. * @since 2.0
  65. */
  66. public $app;
  67. /**
  68. * The image file path
  69. * @var string
  70. */
  71. public $img_file;
  72. /**
  73. * The image format
  74. * @var string
  75. */
  76. public $img_format;
  77. /**
  78. * The image source
  79. * @var resource
  80. */
  81. public $img_source;
  82. /**
  83. * The image width
  84. * @var string
  85. */
  86. public $img_width;
  87. /**
  88. * The image height
  89. * @var string
  90. */
  91. public $img_height;
  92. /**
  93. * The thumb width
  94. * @var string
  95. */
  96. public $thumb_width;
  97. /**
  98. * The thumb height
  99. * @var string
  100. */
  101. public $thumb_height;
  102. /**
  103. * The thumb resize
  104. * @var boolean
  105. */
  106. public $thumb_resize;
  107. /**
  108. * The thumb quality
  109. * @var int
  110. */
  111. public $thumb_quality;
  112. /**
  113. * Class constructor
  114. *
  115. * @param string $file The file path.
  116. * @since 2.0
  117. */
  118. public function __construct($file) {
  119. $this->img_file = $file;
  120. $this->thumb_resize = true;
  121. $this->thumb_quality = 90;
  122. // get image info
  123. list($width, $height, $type, $attr) = @getimagesize($this->img_file, $info);
  124. // set image dimensions and type
  125. if (is_array($info)) {
  126. $this->img_width = $width;
  127. $this->img_height = $height;
  128. $this->thumb_width = $width;
  129. $this->thumb_height = $height;
  130. switch ($type) {
  131. case 1:
  132. $this->img_format = 'gif';
  133. $this->img_source = imagecreatefromgif($this->img_file);
  134. break;
  135. case 2:
  136. $this->img_format = 'jpeg';
  137. $this->img_source = imagecreatefromjpeg($this->img_file);
  138. break;
  139. case 3:
  140. $this->img_format = 'png';
  141. $this->img_source = imagecreatefrompng($this->img_file);
  142. break;
  143. default:
  144. $this->img_format = null;
  145. $this->img_source = null;
  146. break;
  147. }
  148. }
  149. }
  150. /**
  151. * Set resize
  152. *
  153. * @param boolean $resize Resize value
  154. *
  155. * @return void
  156. * @since 2.0
  157. */
  158. public function setResize($resize) {
  159. $this->thumb_resize = $resize;
  160. }
  161. /**
  162. * Set thumb dimensions
  163. *
  164. * @param int $width
  165. * @param int $height
  166. *
  167. * @return void
  168. * @since 2.0
  169. */
  170. public function setSize($width, $height) {
  171. $this->thumb_width = $width;
  172. $this->thumb_height = $height;
  173. }
  174. /**
  175. * Size thumb width
  176. *
  177. * @param int $width
  178. *
  179. * @return void
  180. * @since 2.0
  181. */
  182. public function sizeWidth($width) {
  183. $this->thumb_width = $width;
  184. $this->thumb_height = @($width / $this->img_width) * $this->img_height;
  185. }
  186. /**
  187. * Size thumb height
  188. *
  189. * @param int $height
  190. *
  191. * @return void
  192. * @since 2.0
  193. */
  194. public function sizeHeight($height) {
  195. $this->thumb_width = @($height / $this->img_height) * $this->img_width;
  196. $this->thumb_height = $height;
  197. }
  198. /**
  199. * Save file
  200. *
  201. * @param string $file the file to save
  202. *
  203. * @return boolean true on success
  204. * @since 2.0
  205. */
  206. public function save($file) {
  207. $return = false;
  208. if ($this->img_format) {
  209. $src = $this->img_source;
  210. $src_x = 0;
  211. $src_y = 0;
  212. // smart resize thumbnail image
  213. if ($this->thumb_resize) {
  214. $resized_width = @($this->thumb_height / $this->img_height) * $this->img_width;
  215. $resized_height = @($this->thumb_width / $this->img_width) * $this->img_height;
  216. if ($this->thumb_width <= $resized_width) {
  217. $width = $resized_width;
  218. $height = $this->thumb_height;
  219. $src_x = intval(($resized_width - $this->thumb_width) / 2);
  220. } else {
  221. $width = $this->thumb_width;
  222. $height = $resized_height;
  223. $src_y = intval(($resized_height - $this->thumb_height) / 2);
  224. }
  225. $src = imagecreatetruecolor($width, $height);
  226. // save transparent colors
  227. if ($this->img_format == 'png') {
  228. imagecolortransparent($src, imagecolorallocate($src, 0, 0, 0));
  229. imagealphablending($src, false);
  230. imagesavealpha($src, true);
  231. }
  232. // get and reallocate transparency-color for gif
  233. if ($this->img_format == 'gif') {
  234. imagealphablending($src, false);
  235. $transindex = imagecolortransparent($this->img_source) <= imagecolorstotal($src) ? imagecolortransparent($this->img_source) : imagecolorstotal($src);
  236. if ($transindex >= 0) {
  237. $transcol = imagecolorsforindex($this->img_source, $transindex);
  238. $transindex = imagecolorallocatealpha($src, $transcol['red'], $transcol['green'], $transcol['blue'], 127);
  239. imagefill($src, 0, 0, $transindex);
  240. }
  241. }
  242. if (function_exists('imagecopyresampled')) {
  243. @imagecopyresampled($src, $this->img_source, 0, 0, 0, 0, $width, $height, $this->img_width, $this->img_height);
  244. } else {
  245. @imagecopyresized($src, $this->img_source, 0, 0, 0, 0, $width, $height, $this->img_width, $this->img_height);
  246. }
  247. // restore transparency for gif
  248. if ($this->img_format == 'gif') {
  249. if ($transindex >= 0) {
  250. imagecolortransparent($src, $transindex);
  251. for ($y=0; $y < imagesy($src); ++$y) {
  252. for ($x=0; $x < imagesx($src); ++$x) {
  253. if (((imagecolorat($src, $x, $y)>>24) & 0x7F) >= 100) {
  254. imagesetpixel($src, $x, $y, $transindex);
  255. }
  256. }
  257. }
  258. }
  259. }
  260. }
  261. // create thumbnail image
  262. $thumbnail = imagecreatetruecolor($this->thumb_width, $this->thumb_height);
  263. // save transparent colors for png
  264. if ($this->img_format == 'png') {
  265. imagecolortransparent($thumbnail, imagecolorallocate($src, 0, 0, 0));
  266. imagealphablending($thumbnail, false);
  267. imagesavealpha($thumbnail, true);
  268. }
  269. // get and reallocate transparency-color for gif
  270. if ($this->img_format == 'gif') {
  271. imagealphablending($thumbnail, false);
  272. $transindex = imagecolortransparent($src);
  273. if ($transindex >= 0) {
  274. $transcol = imagecolorsforindex($src, $transindex);
  275. $transindex = imagecolorallocatealpha($thumbnail, $transcol['red'], $transcol['green'], $transcol['blue'], 127);
  276. imagefill($thumbnail, 0, 0, $transindex);
  277. }
  278. }
  279. @imagecopy($thumbnail, $src, 0, 0, $src_x, $src_y, $this->thumb_width, $this->thumb_height);
  280. // restore transparency for gif
  281. if ($this->img_format == 'gif') {
  282. if ($transindex >= 0) {
  283. imagecolortransparent($thumbnail, $transindex);
  284. for ($y=0; $y < imagesy($thumbnail); ++$y) {
  285. for ($x=0; $x < imagesx($thumbnail); ++$x) {
  286. if (((imagecolorat($thumbnail, $x, $y)>>24) & 0x7F) >= 100) {
  287. imagesetpixel($thumbnail, $x, $y, $transindex);
  288. }
  289. }
  290. }
  291. }
  292. }
  293. // save thumbnail to file
  294. ob_start();
  295. switch ($this->img_format) {
  296. case 'gif':
  297. $return = imagegif($thumbnail);
  298. break;
  299. case 'jpeg':
  300. $return = imagejpeg($thumbnail, null, $this->thumb_quality);
  301. break;
  302. case 'png':
  303. $return = imagepng($thumbnail);
  304. break;
  305. }
  306. $output = ob_get_contents();
  307. ob_end_clean();
  308. JFile::write($file, $output);
  309. // free memory resources
  310. imagedestroy($thumbnail);
  311. imagedestroy($src);
  312. }
  313. return $return;
  314. }
  315. }