PageRenderTime 82ms CodeModel.GetById 34ms RepoModel.GetById 0ms app.codeStats 1ms

/saf/lib/Ext/upload/class.upload.php

https://github.com/lux/sitellite
PHP | 4591 lines | 2346 code | 292 blank | 1953 comment | 778 complexity | 6c36cd5f8a262e042cd8272dcd8b105f MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, Apache-2.0, GPL-3.0

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) Colin Verot 2003-2009. All rights reserved. |
  6. // | Version 0.28 |
  7. // | Last modified 10/08/2009 |
  8. // | Email colin@verot.net |
  9. // | Web http://www.verot.net |
  10. // +------------------------------------------------------------------------+
  11. // | This program is free software; you can redistribute it and/or modify |
  12. // | it under the terms of the GNU General Public License version 2 as |
  13. // | published by the Free Software Foundation. |
  14. // | |
  15. // | This program is distributed in the hope that it will be useful, |
  16. // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
  17. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
  18. // | GNU General Public License for more details. |
  19. // | |
  20. // | You should have received a copy of the GNU General Public License |
  21. // | along with this program; if not, write to the |
  22. // | Free Software Foundation, Inc., 59 Temple Place, Suite 330, |
  23. // | Boston, MA 02111-1307 USA |
  24. // | |
  25. // | Please give credit on sites that use class.upload and submit changes |
  26. // | of the script so other people can use them as well. |
  27. // | This script is free to use, don't abuse. |
  28. // +------------------------------------------------------------------------+
  29. //
  30. /**
  31. * Class upload
  32. *
  33. * @version 0.28
  34. * @author Colin Verot <colin@verot.net>
  35. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  36. * @copyright Colin Verot
  37. * @package cmf
  38. * @subpackage external
  39. */
  40. /**
  41. * Class upload
  42. *
  43. * <b>What does it do?</b>
  44. *
  45. * It manages file uploads for you. In short, it manages the uploaded file,
  46. * and allows you to do whatever you want with the file, especially if it
  47. * is an image, and as many times as you want.
  48. *
  49. * It is the ideal class to quickly integrate file upload in your site.
  50. * If the file is an image, you can convert, resize, crop it in many ways.
  51. * You can also apply filters, add borders, text, watermarks, etc...
  52. * That's all you need for a gallery script for instance. Supported formats
  53. * are PNG, JPG, GIF and BMP.
  54. *
  55. * You can also use the class to work on local files, which is especially
  56. * useful to use the image manipulation features. The class also supports
  57. * Flash uploaders.
  58. *
  59. * The class works with PHP 4 and 5, and its error messages can
  60. * be localized at will.
  61. *
  62. * <b>How does it work?</b>
  63. *
  64. * You instanciate the class with the $_FILES['my_field'] array
  65. * where my_field is the field name from your upload form.
  66. * The class will check if the original file has been uploaded
  67. * to its temporary location (alternatively, you can instanciate
  68. * the class with a local filename).
  69. *
  70. * You can then set a number of processing variables to act on the file.
  71. * For instance, you can rename the file, and if it is an image,
  72. * convert and resize it in many ways.
  73. * You can also set what will the class do if the file already exists.
  74. *
  75. * Then you call the function {@link process} to actually perform the actions
  76. * according to the processing parameters you set above.
  77. * It will create new instances of the original file,
  78. * so the original file remains the same between each process.
  79. * The file will be manipulated, and copied to the given location.
  80. * The processing variables will be reset once it is done.
  81. *
  82. * You can repeat setting up a new set of processing variables,
  83. * and calling {@link process} again as many times as you want.
  84. * When you have finished, you can call {@link clean} to delete
  85. * the original uploaded file.
  86. *
  87. * If you don't set any processing parameters and call {@link process}
  88. * just after instanciating the class. The uploaded file will be simply
  89. * copied to the given location without any alteration or checks.
  90. *
  91. * Don't forget to add <i>enctype="multipart/form-data"</i> in your form
  92. * tag <form> if you want your form to upload the file.
  93. *
  94. * <b>How to use it?</b><br>
  95. * Create a simple HTML file, with a form such as:
  96. * <pre>
  97. * <form enctype="multipart/form-data" method="post" action="upload.php">
  98. * <input type="file" size="32" name="image_field" value="">
  99. * <input type="submit" name="Submit" value="upload">
  100. * </form>
  101. * </pre>
  102. * Create a file called upload.php:
  103. * <pre>
  104. * $handle = new upload($_FILES['image_field']);
  105. * if ($handle->uploaded) {
  106. * $handle->file_new_name_body = 'image_resized';
  107. * $handle->image_resize = true;
  108. * $handle->image_x = 100;
  109. * $handle->image_ratio_y = true;
  110. * $handle->process('/home/user/files/');
  111. * if ($handle->processed) {
  112. * echo 'image resized';
  113. * $handle->clean();
  114. * } else {
  115. * echo 'error : ' . $handle->error;
  116. * }
  117. * }
  118. * </pre>
  119. *
  120. * <b>How to process local files?</b><br>
  121. * Use the class as following, the rest being the same as above:
  122. * <pre>
  123. * $handle = new upload('/home/user/myfile.jpg');
  124. * </pre>
  125. *
  126. * <b>How to set the language?</b><br>
  127. * Instantiate the class with a second argument being the language code:
  128. * <pre>
  129. * $handle = new upload($_FILES['image_field'], 'fr_FR');
  130. * $handle = new upload('/home/user/myfile.jpg', 'fr_FR');
  131. * </pre>
  132. *
  133. * <b>How to output the resulting file or picture directly to the browser?</b><br>
  134. * Simply call {@link process}() without an argument (or with null as first argument):
  135. * <pre>
  136. * $handle = new upload($_FILES['image_field']);
  137. * header('Content-type: ' . $handle->file_src_mime);
  138. * echo $handle->Process();
  139. * die();
  140. * </pre>
  141. * Or if you want to force the download of the file:
  142. * <pre>
  143. * $handle = new upload($_FILES['image_field']);
  144. * header('Content-type: ' . $handle->file_src_mime);
  145. * header("Content-Disposition: attachment; filename=".rawurlencode($handle->file_src_name).";");
  146. * echo $handle->Process();
  147. * die();
  148. * </pre>
  149. *
  150. * <b>Processing parameters</b> (reset after each process)
  151. * <ul>
  152. * <li><b>file_new_name_body</b> replaces the name body (default: '')<br>
  153. * <pre>$handle->file_new_name_body = 'new name';</pre></li>
  154. * <li><b>file_name_body_add</b> appends to the name body (default: '')<br>
  155. * <pre>$handle->file_name_body_add = '_uploaded';</pre></li>
  156. * <li><b>file_name_body_pre</b> prepends to the name body (default: '')<br>
  157. * <pre>$handle->file_name_body_pre = 'thumb_';</pre></li>
  158. * <li><b>file_new_name_ext</b> replaces the file extension (default: '')<br>
  159. * <pre>$handle->file_new_name_ext = 'txt';</pre></li>
  160. * <li><b>file_safe_name</b> formats the filename (spaces changed to _) (default: true)<br>
  161. * <pre>$handle->file_safe_name = true;</pre></li>
  162. * <li><b>file_overwrite</b> sets behaviour if file already exists (default: false)<br>
  163. * <pre>$handle->file_overwrite = true;</pre></li>
  164. * <li><b>file_auto_rename</b> automatically renames file if it already exists (default: true)<br>
  165. * <pre>$handle->file_auto_rename = true;</pre></li>
  166. * <li><b>auto_create_dir</b> automatically creates destination directory if missing (default: true)<br>
  167. * <pre>$handle->auto_create_dir = true;</pre></li>
  168. * <li><b>dir_auto_chmod</b> automatically attempts to chmod the destination directory if not writeable (default: true)<br>
  169. * <pre>$handle->dir_auto_chmod = true;</pre></li>
  170. * <li><b>dir_chmod</b> chmod used when creating directory or if directory not writeable (default: 0777)<br>
  171. * <pre>$handle->dir_chmod = 0777;</pre></li>
  172. * <li><b>file_max_size</b> sets maximum upload size (default: upload_max_filesize from php.ini)<br>
  173. * <pre>$handle->file_max_size = '1024'; // 1KB</pre></li>
  174. * <li><b>mime_check</b> sets if the class check the MIME against the {@link allowed} list (default: true)<br>
  175. * <pre>$handle->mime_check = true;</pre></li>
  176. * <li><b>mime_fileinfo</b> activates MIME detection with Fileinfo PECL extension if true (or a string to set the path to the magic database file); false to deactivate (default: true)<br>
  177. * <pre>$handle->mime_fileinfo = '/usr/share/file/magic';</pre></li>
  178. * <li><b>mime_file</b> activates MIME detection with UNIX file() command if true; false to deactivate (default: true)<br>
  179. * <pre>$handle->mime_file = false;</pre></li>
  180. * <li><b>mime_magic</b> activates MIME detection with mime_magic (mime_content_type()) if true; false to deactivate (default: true)<br>
  181. * <pre>$handle->mime_magic = false;</pre></li>
  182. * <li><b>mime_getimagesize</b> activates MIME detection with getimagesize() if true; false to deactivate (default: true)<br>
  183. * <pre>$handle->mime_getimagesize = false;</pre></li>
  184. * <li><b>no_script</b> sets if the class turns scripts into text files (default: true)<br>
  185. * <pre>$handle->no_script = false;</pre></li>
  186. * <li><b>allowed</b> array of allowed mime-types. wildcard accepted, as in image/* (default: check {@link Init})<br>
  187. * <pre>$handle->allowed = array('application/pdf','application/msword', 'image/*');</pre></li>
  188. * <li><b>forbidden</b> array of forbidden mime-types. wildcard accepted, as in image/* (default: check {@link Init})<br>
  189. * <pre>$handle->forbidden = array('application/*');</pre></li>
  190. * </ul>
  191. * <ul>
  192. * <li><b>image_convert</b> if set, image will be converted (possible values : ''|'png'|'jpeg'|'gif'|'bmp'; default: '')<br>
  193. * <pre>$handle->image_convert = 'jpg';</pre></li>
  194. * <li><b>image_background_color</b> if set, will forcibly fill transparent areas with the color, in hexadecimal (default: null)<br>
  195. * <pre>$handle->image_background_color = '#FF00FF';</pre></li>
  196. * <li><b>image_default_color</b> fallback color background color for non alpha-transparent output formats, such as JPEG or BMP, in hexadecimal (default: #FFFFFF)<br>
  197. * <pre>$handle->image_default_color = '#FF00FF';</pre></li>
  198. * <li><b>jpeg_quality</b> sets the compression quality for JPEG images (default: 85)<br>
  199. * <pre>$handle->jpeg_quality = 50;</pre></li>
  200. * <li><b>jpeg_size</b> if set to a size in bytes, will approximate {@link jpeg_quality} so the output image fits within the size (default: null)<br>
  201. * <pre>$handle->jpeg_size = 3072;</pre></li>
  202. * </ul>
  203. * The following eight settings can be used to invalidate an upload if the file is an image (note that <i>open_basedir</i> restrictions prevent the use of these settings)
  204. * <ul>
  205. * <li><b>image_max_width</b> if set to a dimension in pixels, the upload will be invalid if the image width is greater (default: null)<br>
  206. * <pre>$handle->image_max_width = 200;</pre></li>
  207. * <li><b>image_max_height</b> if set to a dimension in pixels, the upload will be invalid if the image height is greater (default: null)<br>
  208. * <pre>$handle->image_max_height = 100;</pre></li>
  209. * <li><b>image_max_pixels</b> if set to a number of pixels, the upload will be invalid if the image number of pixels is greater (default: null)<br>
  210. * <pre>$handle->image_max_pixels = 50000;</pre></li>
  211. * <li><b>image_max_ratio</b> if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is greater (default: null)<br>
  212. * <pre>$handle->image_max_ratio = 1.5;</pre></li>
  213. * <li><b>image_min_width</b> if set to a dimension in pixels, the upload will be invalid if the image width is lower (default: null)<br>
  214. * <pre>$handle->image_min_width = 100;</pre></li>
  215. * <li><b>image_min_height</b> if set to a dimension in pixels, the upload will be invalid if the image height is lower (default: null)<br>
  216. * <pre>$handle->image_min_height = 500;</pre></li>
  217. * <li><b>image_min_pixels</b> if set to a number of pixels, the upload will be invalid if the image number of pixels is lower (default: null)<br>
  218. * <pre>$handle->image_min_pixels = 20000;</pre></li>
  219. * <li><b>image_min_ratio</b> if set to a aspect ratio (width/height), the upload will be invalid if the image apect ratio is lower (default: null)<br>
  220. * <pre>$handle->image_min_ratio = 0.5;</pre></li>
  221. * </ul>
  222. * <ul>
  223. * <li><b>image_resize</b> determines is an image will be resized (default: false)<br>
  224. * <pre>$handle->image_resize = true;</pre></li>
  225. * </ul>
  226. * The following variables are used only if {@link image_resize} == true
  227. * <ul>
  228. * <li><b>image_x</b> destination image width (default: 150)<br>
  229. * <pre>$handle->image_x = 100;</pre></li>
  230. * <li><b>image_y</b> destination image height (default: 150)<br>
  231. * <pre>$handle->image_y = 200;</pre></li>
  232. * </ul>
  233. * Use either one of the following
  234. * <ul>
  235. * <li><b>image_ratio</b> if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes if true (default: false)<br>
  236. * <pre>$handle->image_ratio = true;</pre></li>
  237. * <li><b>image_ratio_crop</b> if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes, and cropping excedent to fill the space. setting can also be a string, with one or more from 'TBLR', indicating which side of the image will be kept while cropping (default: false)<br>
  238. * <pre>$handle->image_ratio_crop = true;</pre></li>
  239. * <li><b>image_ratio_fill</b> if true, resize image conserving the original sizes ratio, using {@link image_x} AND {@link image_y} as max sizes, fitting the image in the space and coloring the remaining space. setting can also be a string, with one or more from 'TBLR', indicating which side of the space the image will be in (default: false)<br>
  240. * <pre>$handle->image_ratio_fill = true;</pre></li>
  241. * <li><b>image_ratio_no_zoom_in</b> same as {@link image_ratio}, but won't resize if the source image is smaller than {@link image_x} x {@link image_y} (default: false)<br>
  242. * <pre>$handle->image_ratio_no_zoom_in = true;</pre></li>
  243. * <li><b>image_ratio_no_zoom_out</b> same as {@link image_ratio}, but won't resize if the source image is bigger than {@link image_x} x {@link image_y} (default: false)<br>
  244. * <pre>$handle->image_ratio_no_zoom_out = true;</pre></li>
  245. * <li><b>image_ratio_x</b> if true, resize image, calculating {@link image_x} from {@link image_y} and conserving the original sizes ratio (default: false)<br>
  246. * <pre>$handle->image_ratio_x = true;</pre></li>
  247. * <li><b>image_ratio_y</b> if true, resize image, calculating {@link image_y} from {@link image_x} and conserving the original sizes ratio (default: false)<br>
  248. * <pre>$handle->image_ratio_y = true;</pre></li>
  249. * <li><b>image_ratio_pixels</b> if set to a long integer, resize image, calculating {@link image_y} and {@link image_x} to match a the number of pixels (default: false)<br>
  250. * <pre>$handle->image_ratio_pixels = 25000;</pre></li>
  251. * </ul>
  252. * The following image manipulations require GD2+
  253. * <ul>
  254. * <li><b>image_brightness</b> if set, corrects the brightness. value between -127 and 127 (default: null)<br>
  255. * <pre>$handle->image_brightness = 40;</pre></li>
  256. * <li><b>image_contrast</b> if set, corrects the contrast. value between -127 and 127 (default: null)<br>
  257. * <pre>$handle->image_contrast = 50;</pre></li>
  258. * <li><b>image_tint_color</b> if set, will tint the image with a color, value as hexadecimal #FFFFFF (default: null)<br>
  259. * <pre>$handle->image_tint_color = '#FF0000';</pre></li>
  260. * <li><b>image_overlay_color</b> if set, will add a colored overlay, value as hexadecimal #FFFFFF (default: null)<br>
  261. * <pre>$handle->image_overlay_color = '#FF0000';</pre></li>
  262. * <li><b>image_overlay_percent</b> used when {@link image_overlay_color} is set, determines the opacity (default: 50)<br>
  263. * <pre>$handle->image_overlay_percent = 20;</pre></li>
  264. * <li><b>image_negative</b> inverts the colors in the image (default: false)<br>
  265. * <pre>$handle->image_negative = true;</pre></li>
  266. * <li><b>image_greyscale</b> transforms an image into greyscale (default: false)<br>
  267. * <pre>$handle->image_greyscale = true;</pre></li>
  268. * <li><b>image_threshold</b> applies a threshold filter. value between -127 and 127 (default: null)<br>
  269. * <pre>$handle->image_threshold = 20;</pre></li>
  270. * </ul>
  271. * <ul>
  272. * <li><b>image_text</b> creates a text label on the image, value is a string, with eventual replacement tokens (default: null)<br>
  273. * <pre>$handle->image_text = 'test';</pre></li>
  274. * <li><b>image_text_direction</b> text label direction, either 'h' horizontal or 'v' vertical (default: 'h')<br>
  275. * <pre>$handle->image_text_direction = 'v';</pre></li>
  276. * <li><b>image_text_color</b> text color for the text label, in hexadecimal (default: #FFFFFF)<br>
  277. * <pre>$handle->image_text_color = '#FF0000';</pre></li>
  278. * <li><b>image_text_percent</b> text opacity on the text label, integer between 0 and 100 (default: 100)<br>
  279. * <pre>$handle->image_text_percent = 50;</pre></li>
  280. * <li><b>image_text_background</b> text label background color, in hexadecimal (default: null)<br>
  281. * <pre>$handle->image_text_background = '#FFFFFF';</pre></li>
  282. * <li><b>image_text_background_percent</b> text label background opacity, integer between 0 and 100 (default: 100)<br>
  283. * <pre>$handle->image_text_background_percent = 50;</pre></li>
  284. * <li><b>image_text_font</b> built-in font for the text label, from 1 to 5. 1 is the smallest (default: 5)<br>
  285. * <pre>$handle->image_text_font = 4;</pre></li>
  286. * <li><b>image_text_x</b> absolute text label position, in pixels from the left border. can be negative (default: null)<br>
  287. * <pre>$handle->image_text_x = 5;</pre></li>
  288. * <li><b>image_text_y</b> absolute text label position, in pixels from the top border. can be negative (default: null)<br>
  289. * <pre>$handle->image_text_y = 5;</pre></li>
  290. * <li><b>image_text_position</b> text label position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)<br>
  291. * <pre>$handle->image_text_position = 'LR';</pre></li>
  292. * <li><b>image_text_padding</b> text label padding, in pixels. can be overridden by {@link image_text_padding_x} and {@link image_text_padding_y} (default: 0)<br>
  293. * <pre>$handle->image_text_padding = 5;</pre></li>
  294. * <li><b>image_text_padding_x</b> text label horizontal padding (default: null)<br>
  295. * <pre>$handle->image_text_padding_x = 2;</pre></li>
  296. * <li><b>image_text_padding_y</b> text label vertical padding (default: null)<br>
  297. * <pre>$handle->image_text_padding_y = 10;</pre></li>
  298. * <li><b>image_text_alignment</b> text alignment when text has multiple lines, either 'L', 'C' or 'R' (default: 'C')<br>
  299. * <pre>$handle->image_text_alignment = 'R';</pre></li>
  300. * <li><b>image_text_line_spacing</b> space between lines in pixels, when text has multiple lines (default: 0)<br>
  301. * <pre>$handle->image_text_line_spacing = 3;</pre></li>
  302. * </ul>
  303. * <ul>
  304. * <li><b>image_flip</b> flips image, wither 'h' horizontal or 'v' vertical (default: null)<br>
  305. * <pre>$handle->image_flip = 'h';</pre></li>
  306. * <li><b>image_rotate</b> rotates image. possible values are 90, 180 and 270 (default: null)<br>
  307. * <pre>$handle->image_rotate = 90;</pre></li>
  308. * <li><b>image_crop</b> crops image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)<br>
  309. * <pre>$handle->image_crop = array(50,40,30,20); OR '-20 20%'...</pre></li>
  310. * <li><b>image_precrop</b> crops image, before an eventual resizing. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)<br>
  311. * <pre>$handle->image_precrop = array(50,40,30,20); OR '-20 20%'...</pre></li>
  312. * </ul>
  313. * <ul>
  314. * <li><b>image_bevel</b> adds a bevel border to the image. value is thickness in pixels (default: null)<br>
  315. * <pre>$handle->image_bevel = 20;</pre></li>
  316. * <li><b>image_bevel_color1</b> top and left bevel color, in hexadecimal (default: #FFFFFF)<br>
  317. * <pre>$handle->image_bevel_color1 = '#FFFFFF';</pre></li>
  318. * <li><b>image_bevel_color2</b> bottom and right bevel color, in hexadecimal (default: #000000)<br>
  319. * <pre>$handle->image_bevel_color2 = '#000000';</pre></li>
  320. * <li><b>image_border</b> adds a unicolor border to the image. accepts 4, 2 or 1 values as 'T R B L' or 'TB LR' or 'TBLR'. dimension can be 20, or 20px or 20% (default: null)<br>
  321. * <pre>$handle->image_border = '3px'; OR '-20 20%' OR array(3,2)...</pre></li>
  322. * <li><b>image_border_color</b> border color, in hexadecimal (default: #FFFFFF)<br>
  323. * <pre>$handle->image_border_color = '#FFFFFF';</pre></li>
  324. * <li><b>image_frame</b> type of frame: 1=flat 2=crossed (default: null)<br>
  325. * <pre>$handle->image_frame = 2;</pre></li>
  326. * <li><b>image_frame_colors</b> list of hex colors, in an array or a space separated string (default: '#FFFFFF #999999 #666666 #000000')<br>
  327. * <pre>$handle->image_frame_colors = array('#999999', '#FF0000', '#666666', '#333333', '#000000');</pre></li>
  328. * </ul>
  329. * <ul>
  330. * <li><b>image_watermark</b> adds a watermark on the image, value is a local filename. accepted files are GIF, JPG, BMP, PNG and PNG alpha (default: null)<br>
  331. * <pre>$handle->image_watermark = 'watermark.png';</pre></li>
  332. * <li><b>image_watermark_x</b> absolute watermark position, in pixels from the left border. can be negative (default: null)<br>
  333. * <pre>$handle->image_watermark_x = 5;</pre></li>
  334. * <li><b>image_watermark_y</b> absolute watermark position, in pixels from the top border. can be negative (default: null)<br>
  335. * <pre>$handle->image_watermark_y = 5;</pre></li>
  336. * <li><b>image_watermark_position</b> watermark position withing the image, a combination of one or two from 'TBLR': top, bottom, left, right (default: null)<br>
  337. * <pre>$handle->image_watermark_position = 'LR';</pre></li>
  338. * </ul>
  339. * <ul>
  340. * <li><b>image_reflection_height</b> if set, a reflection will be added. Format is either in pixels or percentage, such as 40, '40', '40px' or '40%' (default: null)<br>
  341. * <pre>$handle->image_reflection_height = '25%';</pre></li>
  342. * <li><b>image_reflection_space</b> space in pixels between the source image and the reflection, can be negative (default: null)<br>
  343. * <pre>$handle->image_reflection_space = 3;</pre></li>
  344. * <li><b>image_reflection_color</b> reflection background color, in hexadecimal. Now deprecated in favor of {@link image_default_color} (default: #FFFFFF)<br>
  345. * <pre>$handle->image_default_color = '#000000';</pre></li>
  346. * <li><b>image_reflection_opacity</b> opacity level at which the reflection starts, integer between 0 and 100 (default: 60)<br>
  347. * <pre>$handle->image_reflection_opacity = 60;</pre></li>
  348. * </ul>
  349. *
  350. * <b>Values that can be read before calling {@link process}()</b>
  351. * <ul>
  352. * <li><b>file_src_name</b> Source file name</li>
  353. * <li><b>file_src_name_body</b> Source file name body</li>
  354. * <li><b>file_src_name_ext</b> Source file extension</li>
  355. * <li><b>file_src_pathname</b> Source file complete path and name</li>
  356. * <li><b>file_src_mime</b> Source file mime type</li>
  357. * <li><b>file_src_size</b> Source file size in bytes</li>
  358. * <li><b>file_src_error</b> Upload error code</li>
  359. * <li><b>file_is_image</b> Boolean flag, true if the file is a supported image type</li>
  360. * </ul>
  361. * If the file is a supported image type (and <i>open_basedir</i> restrictions allow it)
  362. * <ul>
  363. * <li><b>image_src_x</b> Source file width in pixels</li>
  364. * <li><b>image_src_y</b> Source file height in pixels</li>
  365. * <li><b>image_src_pixels</b> Source file number of pixels</li>
  366. * <li><b>image_src_type</b> Source file type (png, jpg, gif or bmp)</li>
  367. * <li><b>image_src_bits</b> Source file color depth</li>
  368. * </ul>
  369. *
  370. * <b>Values that can be read after calling {@link process}()</b>
  371. * <ul>
  372. * <li><b>file_dst_path</b> Destination file path</li>
  373. * <li><b>file_dst_name_body</b> Destination file name body</li>
  374. * <li><b>file_dst_name_ext</b> Destination file extension</li>
  375. * <li><b>file_dst_name</b> Destination file name</li>
  376. * <li><b>file_dst_pathname</b> Destination file complete path and name</li>
  377. * </ul>
  378. * If the file is a supported image type
  379. * <ul>
  380. * <li><b>image_dst_x</b> Destination file width</li>
  381. * <li><b>image_dst_y</b> Destination file height</li>
  382. * <li><b>image_convert</b> Destination file format</li>
  383. * </ul>
  384. *
  385. * <b>Requirements</b>
  386. *
  387. * Most of the image operations require GD. GD2 is greatly recommended
  388. *
  389. * The class is compatible with PHP 4.3+, and compatible with PHP5
  390. *
  391. * <b>Changelog</b>
  392. * <ul>
  393. * <li><b>v 0.28</b> 10/08/2009<br>
  394. * - replaced ereg functions to be compatible with PHP 5.3<br>
  395. * - added flv MIME type<br>
  396. * - improved MIME type detection<br>
  397. * - added {@link file_name_body_pre} to prepend a string to the file name<br>
  398. * - added {@link mime_fileinfo}, {@link mime_file}, {@link mime_magic} and {@link mime_getimagesize} so that it is possible to deactivate some MIME type checking method<br>
  399. * - use exec() rather than shell_exec(), to play better with safe mode <br>
  400. * - added some error messages<br>
  401. * - fix bug when checking on conditions, {@link processed} wasn't propagated properly</li>
  402. * <li><b>v 0.27</b> 14/05/2009<br>
  403. * - look for the language files directory from __FILE__<br>
  404. * - deactivate {@link file_auto_rename} if {@link file_overwrite} is set<br>
  405. * - improved transparency replacement for true color images<br>
  406. * - fixed calls to newer version of UNIX file utility<br>
  407. * - fixed error when using PECL Fileinfo extension in SAFE MODE, and when using the finfo class<br>
  408. * - added {@link image_precrop} to crop the image before an eventual resizing</li>
  409. * <li><b>v 0.26</b> 13/11/2008<br>
  410. * - rewrote conversion from palette to true color to handle transparency better<br>
  411. * - fixed imagecopymergealpha() when the overlayed image is of wrong dimensions<br>
  412. * - fixed imagecreatenew() when the image to create have less than 1 pixels width or height<br>
  413. * - rewrote MIME type detection to be more secure and not rely on browser information; now using Fileinfo PECL extension, UNIX file() command, MIME magic, and getimagesize(), in that order<br>
  414. * - added support for Flash uploaders<br>
  415. * - some bug fixing and error handling</li>
  416. * <li><b>v 0.25</b> 17/11/2007<br>
  417. * - added translation files and mechanism to instantiate the class with a language different from English<br>
  418. * - added {@link forbidden} to set an array of forbidden MIME types<br>
  419. * - implemented support for simple wildcards in {@link allowed} and {@link forbidden}, such as image/*<br>
  420. * - preset the file extension to the desired conversion format when converting an image<br>
  421. * - added read and write support for BMP images<br>
  422. * - added a flag {@link file_is_image} to determine if the file is a supported image type<br>
  423. * - the class now provides some information about the image, before calling {@link process}(). Available are {@link image_src_x}, {@link image_src_y} and the newly introduced {@link image_src_bits}, {@link image_src_pixels} and {@link image_src_type}. Note that this will not work if <i>open_basedir</i> restrictions are in place<br>
  424. * - improved logging; now provides useful system information<br>
  425. * - added some more pre-processing checks for files that are images: {@link image_max_width}, {@link image_max_height}, {@link image_max_pixels}, {@link image_max_ratio}, {@link image_min_width}, {@link image_min_height}, {@link image_min_pixels} and {@link image_min_ratio}<br>
  426. * - added {@link image_ratio_pixels} to resize an image to a number of pixels, keeping aspect ratio<br>
  427. * - added {@link image_is_palette} and {@link image_is_transparent} and {@link image_transparent_color} for GIF images<br>
  428. * - added {@link image_default_color} to define a fallback color for non alpha-transparent output formats, such as JPEG or BMP<br>
  429. * - changed {@link image_background_color}, which now forces transparent areas to be painted<br>
  430. * - improved reflections and color overlays so that it works with alpha transparent images<br>
  431. * - {@link image_reflection_color} is now deprecated in favour of {@link image_default_color}<br />
  432. * - transparent PNGs are now processed in true color, and fully preserving the alpha channel when doing merges<br>
  433. * - transparent GIFs are now automatically detected. {@link preserve_transparency} is deprecated<br>
  434. * - transparent true color images can be saved as GIF while retaining transparency, semi transparent areas being merged with {@link image_default_color}<br>
  435. * - transparent true color images can be saved as JPG/BMP with the semi transparent areas being merged with {@link image_default_color}<br>
  436. * - fixed conversion of images to true color<br>
  437. * - the class can now output the uploaded files content as the return value of process() if the function is called with an empty or null argumenti, or no argument</li>
  438. * <li><b>v 0.24</b> 25/05/2007<br>
  439. * - added {@link image_background_color}, to set the default background color of an image<br>
  440. * - added possibility of using replacement tokens in text labels<br>
  441. * - changed default JPEG quality to 85<br>
  442. * - fixed a small bug when using greyscale filter and associated filters<br>
  443. * - added {@link image_ratio_fill} in order to fit an image within some dimensions and color the remaining space. Very similar to {@link image_ratio_crop}<br>
  444. * - improved the recursive creation of directories<br>
  445. * - the class now converts palette based images to true colors before doing graphic manipulations</li>
  446. * <li><b>v 0.23</b> 23/12/2006<br>
  447. * - fixed a bug when processing more than once the same uploaded file. If there is an open_basedir restriction, the class now creates a temporary file for the first call to process(). This file will be used for subsequent processes, and will be deleted upon calling clean()</li>
  448. * <li><b>v 0.22</b> 16/12/2006<br>
  449. * - added automatic creation of a temporary file if the upload directory is not within open_basedir<br>
  450. * - fixed a bug which was preventing to work on a local file by overwriting it with its processed copy<br>
  451. * - added MIME types video/x-ms-wmv and image/x-png and fixed PNG support for IE weird MIME types<br>
  452. * - modified {@link image_ratio_crop} so it can accept one or more from string 'TBLR', determining which side of the image is kept while cropping<br>
  453. * - added support for multiple lines in the text, using "\n" as a line break<br>
  454. * - added {@link image_text_line_spacing} which allow to set the space between several lines of text<br>
  455. * - added {@link image_text_alignment} which allow to set the alignment when text has several lines<br>
  456. * - {@link image_text_font} can now be set to the path of a GDF font to load external fonts<br>
  457. * - added {@link image_reflection_height} to create a reflection of the source image, which height is in pixels or percentage<br>
  458. * - added {@link image_reflection_space} to set the space in pixels between the source image and the reflection<br>
  459. * - added {@link image_reflection_color} to set the reflection background color<br>
  460. * - added {@link image_reflection_opacity} to set the initial level of opacity of the reflection</li>
  461. * <li><b>v 0.21</b> 30/09/2006<br>
  462. * - added {@link image_ratio_crop} which resizes within {@link image_x} and {@link image_y}, keeping ratio, but filling the space by cropping excedent of image<br>
  463. * - added {@link mime_check}, which default is true, to set checks against {@link allowed} MIME list<br>
  464. * - if MIME is empty, the class now triggers an error<br>
  465. * - color #000000 is OK for {@link image_text_color}, and related text transparency bug fixed<br>
  466. * - {@link gd_version}() now uses gd_info(), or else phpinfo()<br>
  467. * - fixed path issue when the destination path has no trailing slash on Windows systems <br>
  468. * - removed inline functions to be fully PHP5 compatible </li>
  469. * <li><b>v 0.20</b> 11/08/2006<br>
  470. * - added some more error checking and messages (GD presence, permissions...)<br>
  471. * - fix when uploading files without extension<br>
  472. * - changed values for {@link image_brightness} and {@link image_contrast} to be between -127 and 127<br>
  473. * - added {@link dir_auto_create} to automatically and recursively create destination directory if missing.<br>
  474. * - added {@link dir_auto_chmod} to automatically chmod the destination directory if not writeable.<br>
  475. * - added {@link dir_chmod} to set the default chmod to use.<br>
  476. * - added {@link image_crop} to crop images<br>
  477. * - added {@link image_negative} to invert the colors on the image<br>
  478. * - added {@link image_greyscale} to turn the image into greyscale<br>
  479. * - added {@link image_threshold} to apply a threshold filter on the image<br>
  480. * - added {@link image_bevel}, {@link image_bevel_color1} and {@link image_bevel_color2} to add a bevel border<br>
  481. * - added {@link image_border} and {@link image_border_color} to add a single color border<br>
  482. * - added {@link image_frame} and {@link image_frame_colors} to add a multicolored frame</li>
  483. * <li><b>v 0.19</b> 29/03/2006<br>
  484. * - class is now compatible i18n (thanks Sylwester).<br>
  485. * - the class can mow manipulate local files, not only uploaded files (instanciate the class with a local filename).<br>
  486. * - {@link file_safe_name} has been improved a bit.<br>
  487. * - added {@link image_brightness}, {@link image_contrast}, {@link image_tint_color}, {@link image_overlay_color} and {@link image_overlay_percent} to do color manipulation on the images.<br>
  488. * - added {@link image_text} and all derivated settings to add a text label on the image.<br>
  489. * - added {@link image_watermark} and all derivated settings to add a watermark image on the image.<br>
  490. * - added {@link image_flip} and {@link image_rotate} for more image manipulations<br>
  491. * - added {@link jpeg_size} to calculate the JPG compression quality in order to fit within one filesize.</li>
  492. * <li><b>v 0.18</b> 02/02/2006<br>
  493. * - added {@link no_script} to turn dangerous scripts into text files.<br>
  494. * - added {@link mime_magic_check} to set the class to use mime_magic.<br>
  495. * - added {@link preserve_transparency} *experimental*. Thanks Gregor.<br>
  496. * - fixed size and mime checking, wasn't working :/ Thanks Willem.<br>
  497. * - fixed memory leak when resizing images.<br>
  498. * - when resizing, it is not necessary anymore to set {@link image_convert}.<br>
  499. * - il is now possible to simply convert an image, with no resizing.<br>
  500. * - sets the default {@link file_max_size} to upload_max_filesize from php.ini. Thanks Edward</li>
  501. * <li><b>v 0.17</b> 28/05/2005<br>
  502. * - the class can be used with any version of GD.<br>
  503. * - added security check on the file with a list of mime-types.<br>
  504. * - changed the license to GPL v2 only</li>
  505. * <li><b>v 0.16</b> 19/05/2005<br>
  506. * - added {@link file_auto_rename} automatic file renaming if the same filename already exists.<br>
  507. * - added {@link file_safe_name} safe formatting of the filename (spaces to _underscores so far).<br>
  508. * - added some more error reporting to avoid crash if GD is not present</li>
  509. * <li><b>v 0.15</b> 16/04/2005<br>
  510. * - added JPEG compression quality setting. Thanks Vad</li>
  511. * <li><b>v 0.14</b> 14/03/2005<br>
  512. * - reworked the class file to allow parsing with phpDocumentor</li>
  513. * <li><b>v 0.13</b> 07/03/2005<br>
  514. * - fixed a bug with {@link image_ratio}. Thanks Justin.<br>
  515. * - added {@link image_ratio_no_zoom_in} and {@link image_ratio_no_zoom_out} </li>
  516. * <li><b>v 0.12</b> 21/01/2005<br>
  517. * - added {@link image_ratio} to resize within max values, keeping image ratio</li>
  518. * <li><b>v 0.11</b> 22/08/2003<br>
  519. * - update for GD2 (changed imageresized() into imagecopyresampled() and imagecreate() into imagecreatetruecolor())</li>
  520. * </ul>
  521. *
  522. * @package cmf
  523. * @subpackage external
  524. */
  525. class upload {
  526. /**
  527. * Class version
  528. *
  529. * @access public
  530. * @var string
  531. */
  532. var $version;
  533. /**
  534. * Uploaded file name
  535. *
  536. * @access public
  537. * @var string
  538. */
  539. var $file_src_name;
  540. /**
  541. * Uploaded file name body (i.e. without extension)
  542. *
  543. * @access public
  544. * @var string
  545. */
  546. var $file_src_name_body;
  547. /**
  548. * Uploaded file name extension
  549. *
  550. * @access public
  551. * @var string
  552. */
  553. var $file_src_name_ext;
  554. /**
  555. * Uploaded file MIME type
  556. *
  557. * @access public
  558. * @var string
  559. */
  560. var $file_src_mime;
  561. /**
  562. * Uploaded file size, in bytes
  563. *
  564. * @access public
  565. * @var double
  566. */
  567. var $file_src_size;
  568. /**
  569. * Holds eventual PHP error code from $_FILES
  570. *
  571. * @access public
  572. * @var string
  573. */
  574. var $file_src_error;
  575. /**
  576. * Uloaded file name, including server path
  577. *
  578. * @access private
  579. * @var string
  580. */
  581. var $file_src_pathname;
  582. /**
  583. * Uloaded file name temporary copy
  584. *
  585. * @access private
  586. * @var string
  587. */
  588. var $file_src_temp;
  589. /**
  590. * Destination file name
  591. *
  592. * @access private
  593. * @var string
  594. */
  595. var $file_dst_path;
  596. /**
  597. * Destination file name
  598. *
  599. * @access public
  600. * @var string
  601. */
  602. var $file_dst_name;
  603. /**
  604. * Destination file name body (i.e. without extension)
  605. *
  606. * @access public
  607. * @var string
  608. */
  609. var $file_dst_name_body;
  610. /**
  611. * Destination file extension
  612. *
  613. * @access public
  614. * @var string
  615. */
  616. var $file_dst_name_ext;
  617. /**
  618. * Destination file name, including path
  619. *
  620. * @access private
  621. * @var string
  622. */
  623. var $file_dst_pathname;
  624. /**
  625. * Source image width
  626. *
  627. * @access private
  628. * @var integer
  629. */
  630. var $image_src_x;
  631. /**
  632. * Source image height
  633. *
  634. * @access private
  635. * @var integer
  636. */
  637. var $image_src_y;
  638. /**
  639. * Source image color depth
  640. *
  641. * @access private
  642. * @var integer
  643. */
  644. var $image_src_bits;
  645. /**
  646. * Number of pixels
  647. *
  648. * @access private
  649. * @var long
  650. */
  651. var $image_src_pixels;
  652. /**
  653. * Type of image (png, gif, jpg or bmp)
  654. *
  655. * @access private
  656. * @var string
  657. */
  658. var $image_src_type;
  659. /**
  660. * Destination image width
  661. *
  662. * @access private
  663. * @var integer
  664. */
  665. var $image_dst_x;
  666. /**
  667. * Destination image height
  668. *
  669. * @access private
  670. * @var integer
  671. */
  672. var $image_dst_y;
  673. /**
  674. * Supported image formats
  675. *
  676. * @access private
  677. * @var array
  678. */
  679. var $image_supported;
  680. /**
  681. * Flag to determine if the source file is an image
  682. *
  683. * @access private
  684. * @var boolean
  685. */
  686. var $file_is_image;
  687. /**
  688. * Flag set after instanciating the class
  689. *
  690. * Indicates if the file has been uploaded properly
  691. *
  692. * @access public
  693. * @var bool
  694. */
  695. var $uploaded;
  696. /**
  697. * Flag stopping PHP upload checks
  698. *
  699. * Indicates whether we instanciated the class with a filename, in which case
  700. * we will not check on the validity of the PHP *upload*
  701. *
  702. * This flag is automatically set to true when working on a local file
  703. *
  704. * Warning: for uploads, this flag MUST be set to false for security reason
  705. *
  706. * @access public
  707. * @var bool
  708. */
  709. var $no_upload_check;
  710. /**
  711. * Flag set after calling a process
  712. *
  713. * Indicates if the processing, and copy of the resulting file went OK
  714. *
  715. * @access public
  716. * @var bool
  717. */
  718. var $processed;
  719. /**
  720. * Holds eventual error message in plain english
  721. *
  722. * @access public
  723. * @var string
  724. */
  725. var $error;
  726. /**
  727. * Holds an HTML formatted log
  728. *
  729. * @access public
  730. * @var string
  731. */
  732. var $log;
  733. // overiddable processing variables
  734. /**
  735. * Set this variable to replace the name body (i.e. without extension)
  736. *
  737. * @access public
  738. * @var string
  739. */
  740. var $file_new_name_body;
  741. /**
  742. * Set this variable to append a string to the file name body
  743. *
  744. * @access public
  745. * @var string
  746. */
  747. var $file_name_body_add;
  748. /**
  749. * Set this variable to prepend a string to the file name body
  750. *
  751. * @access public
  752. * @var string
  753. */
  754. var $file_name_body_pre;
  755. /**
  756. * Set this variable to change the file extension
  757. *
  758. * @access public
  759. * @var string
  760. */
  761. var $file_new_name_ext;
  762. /**
  763. * Set this variable to format the filename (spaces changed to _)
  764. *
  765. * @access public
  766. * @var boolean
  767. */
  768. var $file_safe_name;
  769. /**
  770. * Set this variable to false if you don't want to check the MIME against the allowed list
  771. *
  772. * This variable is set to true by default for security reason
  773. *
  774. * @access public
  775. * @var boolean
  776. */
  777. var $mime_check;
  778. /**
  779. * Set this variable to false if you don't want to check the MIME with Fileinfo PECL extension
  780. *
  781. * You can also set it with the path of the magic database file.
  782. * If set to true, the class will try to read the MAGIC environment variable
  783. * and if it is empty, will default to '/usr/share/file/magic'
  784. * If set to an empty string, it will call finfo_open without the path argument
  785. *
  786. * This variable is set to true by default for security reason
  787. *
  788. * @access public
  789. * @var boolean
  790. */
  791. var $mime_fileinfo;
  792. /**
  793. * Set this variable to false if you don't want to check the MIME with UNIX file() command
  794. *
  795. * This variable is set to true by default for security reason
  796. *
  797. * @access public
  798. * @var boolean
  799. */
  800. var $mime_file;
  801. /**
  802. * Set this variable to false if you don't want to check the MIME with the magic.mime file
  803. *
  804. * The function mime_content_type() will be deprecated,
  805. * and this variable will be set to false in a future release
  806. *
  807. * This variable is set to true by default for security reason
  808. *
  809. * @access public
  810. * @var boolean
  811. */
  812. var $mime_magic;
  813. /**
  814. * Set this variable to false if you don't want to check the MIME with getimagesize()
  815. *
  816. * The class tries to get a MIME type from getimagesize()
  817. * If no MIME is returned, it tries to guess the MIME type from the file type
  818. *
  819. * This variable is set to true by default for security reason
  820. *
  821. * @access public
  822. * @var boolean
  823. */
  824. var $mime_getimagesize;
  825. /**
  826. * Set this variable to false if you don't want to turn dangerous scripts into simple text files
  827. *
  828. * @access public
  829. * @var boolean
  830. */
  831. var $no_script;
  832. /**
  833. * Set this variable to true to allow automatic renaming of the file
  834. * if the file already exists
  835. *
  836. * Default value is true
  837. *
  838. * For instance, on uploading foo.ext,<br>
  839. * if foo.ext already exists, upload will be renamed foo_1.ext<br>
  840. * and if foo_1.ext already exists, upload will be renamed foo_2.ext<br>
  841. *
  842. * Note that this option doesn't have any effect if {@link file_overwrite} is true
  843. *
  844. * @access public
  845. * @var bool
  846. */
  847. var $file_auto_rename;
  848. /**
  849. * Set this variable to true to allow automatic creation of the destination
  850. * directory if it is missing (works recursively)
  851. *
  852. * Default value is true
  853. *
  854. * @access public
  855. * @var bool
  856. */
  857. var $dir_auto_create;
  858. /**
  859. * Set this variable to true to allow automatic chmod of the destination
  860. * directory if it is not writeable
  861. *
  862. * Default value is true
  863. *
  864. * @access public
  865. * @var bool
  866. */
  867. var $dir_auto_chmod;
  868. /**
  869. * Set this variable to the default chmod you want the class to use
  870. * when creating directories, or attempting to write in a directory
  871. *
  872. * Default value is 0777 (without quotes)
  873. *
  874. * @access public
  875. * @var bool
  876. */
  877. var $dir_chmod;
  878. /**
  879. * Set this variable tu true to allow overwriting of an existing file
  880. *
  881. * Default value is false, so no files will be overwritten
  882. *
  883. * @access public
  884. * @var bool
  885. */
  886. var $file_overwrite;
  887. /**
  888. * Set this variable to change the maximum size in bytes for an uploaded file
  889. *
  890. * Default value is the value <i>upload_max_filesize</i> from php.ini
  891. *
  892. * @access public
  893. * @var double
  894. */
  895. var $file_max_size;
  896. /**
  897. * Set this variable to true to resize the file if it is an image
  898. *
  899. * You will probably want to set {@link image_x} and {@link image_y}, and maybe one of the ratio variables
  900. *
  901. * Default value is false (no resizing)
  902. *
  903. * @access public
  904. * @var bool
  905. */
  906. var $image_resize;
  907. /**
  908. * Set this variable to convert the file if it is an image
  909. *
  910. * Possibles values are : ''; 'png'; 'jpeg'; 'gif'; 'bmp'
  911. *
  912. * Default value is '' (no conversion)<br>
  913. * If {@link resize} is true, {@link convert} will be set to the source file extension
  914. *
  915. * @access public
  916. * @var string
  917. */
  918. var $image_convert;
  919. /**
  920. * Set this variable to the wanted (or maximum/minimum) width for the processed image, in pixels
  921. *
  922. * Default value is 150
  923. *
  924. * @access public
  925. * @var integer
  926. */
  927. var $image_x;
  928. /**
  929. * Set this variable to the wanted (or maximum/minimum) height for the processed image, in pixels
  930. *
  931. * Default value is 150
  932. *
  933. * @access public
  934. * @var integer
  935. */
  936. var $image_y;
  937. /**
  938. * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
  939. *
  940. * Default value is false
  941. *
  942. * @access public
  943. * @var bool
  944. */
  945. var $image_ratio;
  946. /**
  947. * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
  948. *
  949. * The image will be resized as to fill the whole space, and excedent will be cropped
  950. *
  951. * Value can also be a string, one or more character from 'TBLR' (top, bottom, left and right)
  952. * If set as a string, it determines which side of the image is kept while cropping.
  953. * By default, the part of the image kept is in the center, i.e. it crops equally on both sides
  954. *
  955. * Default value is false
  956. *
  957. * @access public
  958. * @var mixed
  959. */
  960. var $image_ratio_crop;
  961. /**
  962. * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y}
  963. *
  964. * The image will be resized to fit entirely in the space, and the rest will be colored.
  965. * The default color is white, but can be set with {@link image_default_color}
  966. *
  967. * Value can also be a string, one or more character from 'TBLR' (top, bottom, left and right)
  968. * If set as a string, it determines in which side of the space the image is displayed.
  969. * By default, the image is displayed in the center, i.e. it fills the remaining space equally on both sides
  970. *
  971. * Default value is false
  972. *
  973. * @access public
  974. * @var mixed
  975. */
  976. var $image_ratio_fill;
  977. /**
  978. * Set this variable to a number of pixels so that {@link image_x} and {@link image_y} are the best match possible
  979. *
  980. * The image will be resized to have approximatively the number of pixels
  981. * The aspect ratio wil be conserved
  982. *
  983. * Default value is false
  984. *
  985. * @access public
  986. * @var mixed
  987. */
  988. var $image_ratio_pixels;
  989. /**
  990. * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y},
  991. * but only if original image is bigger
  992. *
  993. * Default value is false
  994. *
  995. * @access public
  996. * @var bool
  997. */
  998. var $image_ratio_no_zoom_in;
  999. /**
  1000. * Set this variable to keep the original size ratio to fit within {@link image_x} x {@link image_y},
  1001. * but only if original image is smaller
  1002. *
  1003. * Default value is false
  1004. *
  1005. * @access public
  1006. * @var bool
  1007. */
  1008. var $image_ratio_no_zoom_out;
  1009. /**
  1010. * Set this variable to calculate {@link image_x} automatically , using {@link image_y} and conserving ratio
  1011. *
  1012. * Default value is false
  1013. *
  1014. * @access public
  1015. * @var bool
  1016. */
  1017. var $image_ratio_x;
  1018. /**
  1019. * Set this variable to calculate {@link image_y} automatically , using {@link image_x} and conserving ratio
  1020. *
  1021. * Default value is false
  1022. *
  1023. * @access public
  1024. * @var bool
  1025. */
  1026. var $image_ratio_y;
  1027. /**
  1028. * Set this variable to set a maximum image width, above which the upload will be invalid
  1029. *
  1030. * Default value is null
  1031. *
  1032. * @access public
  1033. * @var integer
  1034. */
  1035. var $image_max_width;
  1036. /**
  1037. * Set this variable to set a maximum image height, above which the upload will be invalid
  1038. *
  1039. * Default value is null
  1040. *
  1041. * @access public
  1042. * @var integer
  1043. */
  1044. var $image_max_height;
  1045. /**
  1046. * Set this variable to set a maximum number of pixels for an image, above which the upload will be invalid
  1047. *
  1048. * Default value is null
  1049. *
  1050. * @access public
  1051. * @var long
  1052. */
  1053. var $image_max_pixels;
  1054. /**
  1055. * Set this variable to set a maximum image aspect ratio, above which the up…

Large files files are truncated, but you can click here to view the full file