blob: ae2c8478e6e405f73cda09598491c3fd00f31c11 [file] [log] [blame]
Derek Jones8ede1a22011-10-05 13:34:52 -05001########################
2Image Manipulation Class
3########################
4
5CodeIgniter's Image Manipulation class lets you perform the following
6actions:
7
8- Image Resizing
9- Thumbnail Creation
10- Image Cropping
11- Image Rotating
12- Image Watermarking
13
14All three major image libraries are supported: GD/GD2, NetPBM, and
15ImageMagick
16
17.. note:: Watermarking is only available using the GD/GD2 library. In
18 addition, even though other libraries are supported, GD is required in
19 order for the script to calculate the image properties. The image
20 processing, however, will be performed with the library you specify.
21
Andrey Andreev1e584202014-02-07 21:50:36 +020022.. contents::
23 :local:
24
25.. raw:: html
26
27 <div class="custom-index container"></div>
28
Derek Jones8ede1a22011-10-05 13:34:52 -050029**********************
30Initializing the Class
31**********************
32
33Like most other classes in CodeIgniter, the image class is initialized
34in your controller using the $this->load->library function::
35
36 $this->load->library('image_lib');
37
38Once the library is loaded it will be ready for use. The image library
Andrey Andreev3a18df12014-01-06 12:59:11 +020039object you will use to call all functions is: ``$this->image_lib``
Derek Jones8ede1a22011-10-05 13:34:52 -050040
41Processing an Image
42===================
43
44Regardless of the type of processing you would like to perform
45(resizing, cropping, rotation, or watermarking), the general process is
46identical. You will set some preferences corresponding to the action you
47intend to perform, then call one of four available processing functions.
48For example, to create an image thumbnail you'll do this::
49
Derek Jones156c4022011-10-05 15:58:56 -050050 $config['image_library'] = 'gd2';
51 $config['source_image'] = '/path/to/image/mypic.jpg';
52 $config['create_thumb'] = TRUE;
53 $config['maintain_ratio'] = TRUE;
54 $config['width'] = 75;
55 $config['height'] = 50;
56
57 $this->load->library('image_lib', $config);
58
59 $this->image_lib->resize();
Derek Jones8ede1a22011-10-05 13:34:52 -050060
61The above code tells the image_resize function to look for an image
62called *mypic.jpg* located in the source_image folder, then create a
63thumbnail that is 75 X 50 pixels using the GD2 image_library. Since the
64maintain_ratio option is enabled, the thumb will be as close to the
65target width and height as possible while preserving the original aspect
66ratio. The thumbnail will be called *mypic_thumb.jpg*
67
68.. note:: In order for the image class to be allowed to do any
69 processing, the folder containing the image files must have write
70 permissions.
71
72.. note:: Image processing can require a considerable amount of server
73 memory for some operations. If you are experiencing out of memory errors
74 while processing images you may need to limit their maximum size, and/or
75 adjust PHP memory limits.
76
Andrey Andreev3a18df12014-01-06 12:59:11 +020077Processing Methods
78==================
Derek Jones8ede1a22011-10-05 13:34:52 -050079
Andrey Andreev3a18df12014-01-06 12:59:11 +020080There are four available processing methods:
Derek Jones8ede1a22011-10-05 13:34:52 -050081
82- $this->image_lib->resize()
83- $this->image_lib->crop()
84- $this->image_lib->rotate()
85- $this->image_lib->watermark()
Derek Jones8ede1a22011-10-05 13:34:52 -050086
Andrey Andreev3a18df12014-01-06 12:59:11 +020087These methods return boolean TRUE upon success and FALSE for failure.
Derek Jones8ede1a22011-10-05 13:34:52 -050088If they fail you can retrieve the error message using this function::
89
90 echo $this->image_lib->display_errors();
91
92A good practice is use the processing function conditionally, showing an
93error upon failure, like this::
94
Derek Jones156c4022011-10-05 15:58:56 -050095 if ( ! $this->image_lib->resize())
96 {
Andrey Andreev3a18df12014-01-06 12:59:11 +020097 echo $this->image_lib->display_errors();
Derek Jones156c4022011-10-05 15:58:56 -050098 }
Derek Jones8ede1a22011-10-05 13:34:52 -050099
Andrey Andreev9438e262012-10-05 13:16:27 +0300100.. note:: You can optionally specify the HTML formatting to be applied to
101 the errors, by submitting the opening/closing tags in the function,
102 like this::
Derek Jones8ede1a22011-10-05 13:34:52 -0500103
104 $this->image_lib->display_errors('<p>', '</p>');
105
Andrey Andreev3a18df12014-01-06 12:59:11 +0200106.. _processing-preferences:
107
Derek Jones8ede1a22011-10-05 13:34:52 -0500108Preferences
109===========
110
111The preferences described below allow you to tailor the image processing
112to suit your needs.
113
114Note that not all preferences are available for every function. For
115example, the x/y axis preferences are only available for image cropping.
116Likewise, the width and height preferences have no effect on cropping.
117The "availability" column indicates which functions support a given
118preference.
119
120Availability Legend:
121
122- R - Image Resizing
123- C - Image Cropping
124- X - Image Rotation
125- W - Image Watermarking
126
Joseph Wensley80a11812011-10-06 00:22:49 -0400127======================= ======================= =============================== =========================================================================== =============
128Preference Default Value Options Description Availability
129======================= ======================= =============================== =========================================================================== =============
130**image_library** GD2 GD, GD2, ImageMagick, NetPBM Sets the image library to be used. R, C, X, W
131**library_path** None None Sets the server path to your ImageMagick or NetPBM library. If you use R, C, X
132 either of those libraries you must supply the path. R, C, S, W
133**source_image** None None Sets the source image name/path. The path must be a relative or absolute
134 server path, not a URL.
135**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or R, C, X, W
136 generated dynamically. Note: If you choose the dynamic setting, only one
137 image can be shown at a time, and it can't be positioned on the page. It
138 simply outputs the raw image dynamically to your browser, along with
139 image headers.
Andrey Andreev45965742014-08-27 20:40:11 +0300140**file_permissions** 0644 (integer) File system permissions to apply on the resulting image file, R, C, X, W
141 writing it to the disk. WARNING: Use octal integer notation!
Joseph Wensley80a11812011-10-06 00:22:49 -0400142**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the R, C, X, W
143 file size.
144**new_image** None None Sets the destination image name/path. You'll use this preference when R, C, X, W
145 creating an image copy. The path must be a relative or absolute server
146 path, not a URL.
147**width** None None Sets the width you would like the image set to. R, C
148**height** None None Sets the height you would like the image set to. R, C
149**create_thumb** FALSE TRUE/FALSE (boolean) Tells the image processing function to create a thumb. R
150**thumb_marker** _thumb None Specifies the thumbnail indicator. It will be inserted just before the R
151 file extension, so mypic.jpg would become mypic_thumb.jpg
152**maintain_ratio** TRUE TRUE/FALSE (boolean) Specifies whether to maintain the original aspect ratio when resizing or R, C
153 use hard values.
154**master_dim** auto auto, width, height Specifies what to use as the master axis when resizing or creating R
155 thumbs. For example, let's say you want to resize an image to 100 X 75
156 pixels. If the source image size does not allow perfect resizing to
157 those dimensions, this setting determines which axis should be used as
158 the hard value. "auto" sets the axis automatically based on whether the
Andrey Andreevba231aa2014-01-20 16:43:41 +0200159 image is taller than wider, or vice versa.
Joseph Wensley80a11812011-10-06 00:22:49 -0400160**rotation_angle** None 90, 180, 270, vrt, hor Specifies the angle of rotation when rotating images. Note that PHP X
161 rotates counter-clockwise, so a 90 degree rotation to the right must be
162 specified as 270.
163**x_axis** None None Sets the X coordinate in pixels for image cropping. For example, a C
164 setting of 30 will crop an image 30 pixels from the left.
165**y_axis** None None Sets the Y coordinate in pixels for image cropping. For example, a C
166 setting of 30 will crop an image 30 pixels from the top.
167======================= ======================= =============================== =========================================================================== =============
168
Derek Jones8ede1a22011-10-05 13:34:52 -0500169Setting preferences in a config file
170====================================
171
172If you prefer not to set preferences using the above method, you can
173instead put them into a config file. Simply create a new file called
174image_lib.php, add the $config array in that file. Then save the file
Andrey Andreev3a18df12014-01-06 12:59:11 +0200175in *config/image_lib.php* and it will be used automatically. You will
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600176NOT need to use the ``$this->image_lib->initialize()`` method if you save
Derek Jones8ede1a22011-10-05 13:34:52 -0500177your preferences in a config file.
178
Derek Jones8ede1a22011-10-05 13:34:52 -0500179******************
180Image Watermarking
181******************
182
183The Watermarking feature requires the GD/GD2 library.
184
185Two Types of Watermarking
186=========================
187
188There are two types of watermarking that you can use:
189
190- **Text**: The watermark message will be generating using text, either
191 with a True Type font that you specify, or using the native text
192 output that the GD library supports. If you use the True Type version
193 your GD installation must be compiled with True Type support (most
194 are, but not all).
195- **Overlay**: The watermark message will be generated by overlaying an
196 image (usually a transparent PNG or GIF) containing your watermark
197 over the source image.
198
Andrey Andreev3a18df12014-01-06 12:59:11 +0200199.. _watermarking:
200
Derek Jones8ede1a22011-10-05 13:34:52 -0500201Watermarking an Image
202=====================
203
Andrey Andreev3a18df12014-01-06 12:59:11 +0200204Just as with the other methods (resizing, cropping, and rotating) the
Derek Jones8ede1a22011-10-05 13:34:52 -0500205general process for watermarking involves setting the preferences
206corresponding to the action you intend to perform, then calling the
207watermark function. Here is an example::
208
Derek Jones156c4022011-10-05 15:58:56 -0500209 $config['source_image'] = '/path/to/image/mypic.jpg';
210 $config['wm_text'] = 'Copyright 2006 - John Doe';
211 $config['wm_type'] = 'text';
212 $config['wm_font_path'] = './system/fonts/texb.ttf';
213 $config['wm_font_size'] = '16';
214 $config['wm_font_color'] = 'ffffff';
215 $config['wm_vrt_alignment'] = 'bottom';
216 $config['wm_hor_alignment'] = 'center';
217 $config['wm_padding'] = '20';
218
219 $this->image_lib->initialize($config);
220
221 $this->image_lib->watermark();
Derek Jones8ede1a22011-10-05 13:34:52 -0500222
223The above example will use a 16 pixel True Type font to create the text
224"Copyright 2006 - John Doe". The watermark will be positioned at the
225bottom/center of the image, 20 pixels from the bottom of the image.
226
227.. note:: In order for the image class to be allowed to do any
Andrey Andreev9438e262012-10-05 13:16:27 +0300228 processing, the image file must have "write" file permissions
229 For example, 777.
Derek Jones8ede1a22011-10-05 13:34:52 -0500230
231Watermarking Preferences
232========================
233
234This table shown the preferences that are available for both types of
235watermarking (text or overlay)
236
Joseph Wensley80a11812011-10-06 00:22:49 -0400237======================= =================== ======================= ==========================================================================
238Preference Default Value Options Description
239======================= =================== ======================= ==========================================================================
240**wm_type** text text, overlay Sets the type of watermarking that should be used.
241**source_image** None None Sets the source image name/path. The path must be a relative or absolute
242 server path, not a URL.
243**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or
244 generated dynamically. Note: If you choose the dynamic setting, only one
245 image can be shown at a time, and it can't be positioned on the page. It
246 simply outputs the raw image dynamically to your browser, along with
247 image headers.
248**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the
249 file size.
David Dotsond0c09b92011-11-21 09:56:39 -0600250**wm_padding** None A number The amount of padding, set in pixels, that will be applied to the
Joseph Wensley80a11812011-10-06 00:22:49 -0400251 watermark to set it away from the edge of your images.
252**wm_vrt_alignment** bottom top, middle, bottom Sets the vertical alignment for the watermark image.
253**wm_hor_alignment** center left, center, right Sets the horizontal alignment for the watermark image.
254**wm_hor_offset** None None You may specify a horizontal offset (in pixels) to apply to the
255 watermark position. The offset normally moves the watermark to the
256 right, except if you have your alignment set to "right" then your offset
257 value will move the watermark toward the left of the image.
258**wm_vrt_offset** None None You may specify a vertical offset (in pixels) to apply to the watermark
259 position. The offset normally moves the watermark down, except if you
260 have your alignment set to "bottom" then your offset value will move the
261 watermark toward the top of the image.
262======================= =================== ======================= ==========================================================================
263
Derek Jones8ede1a22011-10-05 13:34:52 -0500264Text Preferences
265----------------
266
267This table shown the preferences that are available for the text type of
268watermarking.
269
Joseph Wensley80a11812011-10-06 00:22:49 -0400270======================= =================== =================== ==========================================================================
271Preference Default Value Options Description
272======================= =================== =================== ==========================================================================
273**wm_text** None None The text you would like shown as the watermark. Typically this will be a
274 copyright notice.
275**wm_font_path** None None The server path to the True Type Font you would like to use. If you do
276 not use this option, the native GD font will be used.
277**wm_font_size** 16 None The size of the text. Note: If you are not using the True Type option
278 above, the number is set using a range of 1 - 5. Otherwise, you can use
279 any valid pixel size for the font you're using.
Andrey Andreev64dbdfb2011-12-30 14:14:07 +0200280**wm_font_color** ffffff None The font color, specified in hex. Both the full 6-length (ie, 993300) and
281 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400282**wm_shadow_color** None None The color of the drop shadow, specified in hex. If you leave this blank
Andrey Andreev64dbdfb2011-12-30 14:14:07 +0200283 a drop shadow will not be used. Both the full 6-length (ie, 993300) and
284 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400285**wm_shadow_distance** 3 None The distance (in pixels) from the font that the drop shadow should
286 appear.
287======================= =================== =================== ==========================================================================
288
Derek Jones8ede1a22011-10-05 13:34:52 -0500289Overlay Preferences
290-------------------
291
292This table shown the preferences that are available for the overlay type
293of watermarking.
294
Joseph Wensley80a11812011-10-06 00:22:49 -0400295======================= =================== =================== ==========================================================================
296Preference Default Value Options Description
297======================= =================== =================== ==========================================================================
298**wm_overlay_path** None None The server path to the image you wish to use as your watermark. Required
299 only if you are using the overlay method.
300**wm_opacity** 50 1 - 100 Image opacity. You may specify the opacity (i.e. transparency) of your
301 watermark image. This allows the watermark to be faint and not
302 completely obscure the details from the original image behind it. A 50%
303 opacity is typical.
304**wm_x_transp** 4 A number If your watermark image is a PNG or GIF image, you may specify a color
305 on the image to be "transparent". This setting (along with the next)
306 will allow you to specify that color. This works by specifying the "X"
307 and "Y" coordinate pixel (measured from the upper left) within the image
308 that corresponds to a pixel representative of the color you want to be
309 transparent.
310**wm_y_transp** 4 A number Along with the previous setting, this allows you to specify the
311 coordinate to a pixel representative of the color you want to be
312 transparent.
313======================= =================== =================== ==========================================================================
Andrey Andreev3a18df12014-01-06 12:59:11 +0200314
315***************
316Class Reference
317***************
318
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200319.. php:class:: CI_Image_lib
Andrey Andreev3a18df12014-01-06 12:59:11 +0200320
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200321 .. php:method:: initialize([$props = array()])
Andrey Andreev3a18df12014-01-06 12:59:11 +0200322
Andrey Andreev28c2c972014-02-08 04:27:48 +0200323 :param array $props: Image processing preferences
324 :returns: TRUE on success, FALSE in case of invalid settings
325 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200326
327 Initializes the class for processing an image.
328
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200329 .. php:method:: resize()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200330
Andrey Andreev28c2c972014-02-08 04:27:48 +0200331 :returns: TRUE on success, FALSE on failure
332 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200333
334 The image resizing method lets you resize the original image, create a
335 copy (with or without resizing), or create a thumbnail image.
336
337 For practical purposes there is no difference between creating a copy
338 and creating a thumbnail except a thumb will have the thumbnail marker
339 as part of the name (i.e. mypic_thumb.jpg).
340
341 All preferences listed in the :ref:`processing-preferences` table are available for this
342 method except these three: *rotation_angle*, *x_axis* and *y_axis*.
343
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600344 **Creating a Thumbnail**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200345
346 The resizing method will create a thumbnail file (and preserve the
347 original) if you set this preference to TRUE::
348
349 $config['create_thumb'] = TRUE;
350
351 This single preference determines whether a thumbnail is created or not.
352
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600353 **Creating a Copy**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200354
355 The resizing method will create a copy of the image file (and preserve
356 the original) if you set a path and/or a new filename using this
357 preference::
358
359 $config['new_image'] = '/path/to/new_image.jpg';
360
361 Notes regarding this preference:
362
363 - If only the new image name is specified it will be placed in the same
364 folder as the original
365 - If only the path is specified, the new image will be placed in the
366 destination with the same name as the original.
367 - If both the path and image name are specified it will placed in its
368 own destination and given the new name.
369
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600370 **Resizing the Original Image**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200371
372 If neither of the two preferences listed above (create_thumb, and
373 new_image) are used, the resizing method will instead target the
374 original image for processing.
375
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200376 .. php:method:: crop()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200377
Andrey Andreev28c2c972014-02-08 04:27:48 +0200378 :returns: TRUE on success, FALSE on failure
379 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200380
381 The cropping method works nearly identically to the resizing function
382 except it requires that you set preferences for the X and Y axis (in
383 pixels) specifying where to crop, like this::
384
Andrey Andreev28c2c972014-02-08 04:27:48 +0200385 $config['x_axis'] = 100;
386 $config['y_axis'] = 40;
Andrey Andreev3a18df12014-01-06 12:59:11 +0200387
388 All preferences listed in the :ref:`processing-preferences` table are available for this
389 method except these: *rotation_angle*, *create_thumb* and *new_image*.
390
391 Here's an example showing how you might crop an image::
392
393 $config['image_library'] = 'imagemagick';
394 $config['library_path'] = '/usr/X11R6/bin/';
395 $config['source_image'] = '/path/to/image/mypic.jpg';
Andrey Andreev28c2c972014-02-08 04:27:48 +0200396 $config['x_axis'] = 100;
397 $config['y_axis'] = 60;
Andrey Andreev3a18df12014-01-06 12:59:11 +0200398
399 $this->image_lib->initialize($config);
400
401 if ( ! $this->image_lib->crop())
402 {
403 echo $this->image_lib->display_errors();
404 }
405
406 .. note:: Without a visual interface it is difficult to crop images, so this
407 method is not very useful unless you intend to build such an
408 interface. That's exactly what we did using for the photo gallery module
409 in ExpressionEngine, the CMS we develop. We added a JavaScript UI that
410 lets the cropping area be selected.
411
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200412 .. php:method:: rotate()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200413
Andrey Andreev28c2c972014-02-08 04:27:48 +0200414 :returns: TRUE on success, FALSE on failure
415 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200416
417 The image rotation method requires that the angle of rotation be set
418 via its preference::
419
420 $config['rotation_angle'] = '90';
421
422 There are 5 rotation options:
423
424 #. 90 - rotates counter-clockwise by 90 degrees.
425 #. 180 - rotates counter-clockwise by 180 degrees.
426 #. 270 - rotates counter-clockwise by 270 degrees.
427 #. hor - flips the image horizontally.
428 #. vrt - flips the image vertically.
429
430 Here's an example showing how you might rotate an image::
431
432 $config['image_library'] = 'netpbm';
433 $config['library_path'] = '/usr/bin/';
434 $config['source_image'] = '/path/to/image/mypic.jpg';
435 $config['rotation_angle'] = 'hor';
436
437 $this->image_lib->initialize($config);
438
439 if ( ! $this->image_lib->rotate())
440 {
441 echo $this->image_lib->display_errors();
442 }
443
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200444 .. php:method:: watermark()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200445
Andrey Andreev28c2c972014-02-08 04:27:48 +0200446 :returns: TRUE on success, FALSE on failure
447 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200448
449 Creates a watermark over an image, please refer to the :ref:`watermarking`
450 section for more info.
451
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200452 .. php:method:: clear()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200453
Andrey Andreev28c2c972014-02-08 04:27:48 +0200454 :rtype: void
Andrey Andreev3a18df12014-01-06 12:59:11 +0200455
456 The clear method resets all of the values used when processing an
457 image. You will want to call this if you are processing images in a
458 loop.
459
460 ::
461
462 $this->image_lib->clear();
463
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200464 .. php:method:: display_errors([$open = '<p>[, $close = '</p>']])
Andrey Andreev3a18df12014-01-06 12:59:11 +0200465
Andrey Andreev28c2c972014-02-08 04:27:48 +0200466 :param string $open: Error message opening tag
467 :param string $close: Error message closing tag
468 :returns: Error messages
469 :rtype: string
Andrey Andreev3a18df12014-01-06 12:59:11 +0200470
471 Returns all detected errors formatted as a string.
472 ::
473
474 echo $this->image_lib->diplay_errors();