blob: 22407962f71ef7d873a089bcc3494f3a0235c9be [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
Andrey Andreev858e8b72016-03-04 15:19:24 +020066ratio. The thumbnail will be called *mypic_thumb.jpg* and located at
67the same level as *source_image*.
Derek Jones8ede1a22011-10-05 13:34:52 -050068
69.. note:: In order for the image class to be allowed to do any
70 processing, the folder containing the image files must have write
71 permissions.
72
73.. note:: Image processing can require a considerable amount of server
74 memory for some operations. If you are experiencing out of memory errors
75 while processing images you may need to limit their maximum size, and/or
76 adjust PHP memory limits.
77
Andrey Andreev3a18df12014-01-06 12:59:11 +020078Processing Methods
79==================
Derek Jones8ede1a22011-10-05 13:34:52 -050080
Andrey Andreev3a18df12014-01-06 12:59:11 +020081There are four available processing methods:
Derek Jones8ede1a22011-10-05 13:34:52 -050082
83- $this->image_lib->resize()
84- $this->image_lib->crop()
85- $this->image_lib->rotate()
86- $this->image_lib->watermark()
Derek Jones8ede1a22011-10-05 13:34:52 -050087
Andrey Andreev3a18df12014-01-06 12:59:11 +020088These methods return boolean TRUE upon success and FALSE for failure.
Derek Jones8ede1a22011-10-05 13:34:52 -050089If they fail you can retrieve the error message using this function::
90
91 echo $this->image_lib->display_errors();
92
NAghajani4d214612015-05-19 02:07:42 +043093A good practice is to use the processing function conditionally, showing an
Derek Jones8ede1a22011-10-05 13:34:52 -050094error upon failure, like this::
95
Derek Jones156c4022011-10-05 15:58:56 -050096 if ( ! $this->image_lib->resize())
97 {
Andrey Andreev3a18df12014-01-06 12:59:11 +020098 echo $this->image_lib->display_errors();
Derek Jones156c4022011-10-05 15:58:56 -050099 }
Derek Jones8ede1a22011-10-05 13:34:52 -0500100
Andrey Andreev9438e262012-10-05 13:16:27 +0300101.. note:: You can optionally specify the HTML formatting to be applied to
102 the errors, by submitting the opening/closing tags in the function,
103 like this::
Derek Jones8ede1a22011-10-05 13:34:52 -0500104
105 $this->image_lib->display_errors('<p>', '</p>');
106
Andrey Andreev3a18df12014-01-06 12:59:11 +0200107.. _processing-preferences:
108
Derek Jones8ede1a22011-10-05 13:34:52 -0500109Preferences
110===========
111
112The preferences described below allow you to tailor the image processing
113to suit your needs.
114
115Note that not all preferences are available for every function. For
116example, the x/y axis preferences are only available for image cropping.
117Likewise, the width and height preferences have no effect on cropping.
118The "availability" column indicates which functions support a given
119preference.
120
121Availability Legend:
122
123- R - Image Resizing
124- C - Image Cropping
125- X - Image Rotation
126- W - Image Watermarking
127
Joseph Wensley80a11812011-10-06 00:22:49 -0400128======================= ======================= =============================== =========================================================================== =============
129Preference Default Value Options Description Availability
130======================= ======================= =============================== =========================================================================== =============
131**image_library** GD2 GD, GD2, ImageMagick, NetPBM Sets the image library to be used. R, C, X, W
132**library_path** None None Sets the server path to your ImageMagick or NetPBM library. If you use R, C, X
133 either of those libraries you must supply the path. R, C, S, W
134**source_image** None None Sets the source image name/path. The path must be a relative or absolute
135 server path, not a URL.
136**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or R, C, X, W
137 generated dynamically. Note: If you choose the dynamic setting, only one
138 image can be shown at a time, and it can't be positioned on the page. It
139 simply outputs the raw image dynamically to your browser, along with
140 image headers.
Andrey Andreev45965742014-08-27 20:40:11 +0300141**file_permissions** 0644 (integer) File system permissions to apply on the resulting image file, R, C, X, W
142 writing it to the disk. WARNING: Use octal integer notation!
Joseph Wensley80a11812011-10-06 00:22:49 -0400143**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the R, C, X, W
144 file size.
145**new_image** None None Sets the destination image name/path. You'll use this preference when R, C, X, W
146 creating an image copy. The path must be a relative or absolute server
147 path, not a URL.
148**width** None None Sets the width you would like the image set to. R, C
149**height** None None Sets the height you would like the image set to. R, C
150**create_thumb** FALSE TRUE/FALSE (boolean) Tells the image processing function to create a thumb. R
151**thumb_marker** _thumb None Specifies the thumbnail indicator. It will be inserted just before the R
152 file extension, so mypic.jpg would become mypic_thumb.jpg
153**maintain_ratio** TRUE TRUE/FALSE (boolean) Specifies whether to maintain the original aspect ratio when resizing or R, C
154 use hard values.
155**master_dim** auto auto, width, height Specifies what to use as the master axis when resizing or creating R
156 thumbs. For example, let's say you want to resize an image to 100 X 75
157 pixels. If the source image size does not allow perfect resizing to
158 those dimensions, this setting determines which axis should be used as
159 the hard value. "auto" sets the axis automatically based on whether the
Andrey Andreevba231aa2014-01-20 16:43:41 +0200160 image is taller than wider, or vice versa.
Joseph Wensley80a11812011-10-06 00:22:49 -0400161**rotation_angle** None 90, 180, 270, vrt, hor Specifies the angle of rotation when rotating images. Note that PHP X
162 rotates counter-clockwise, so a 90 degree rotation to the right must be
163 specified as 270.
164**x_axis** None None Sets the X coordinate in pixels for image cropping. For example, a C
165 setting of 30 will crop an image 30 pixels from the left.
166**y_axis** None None Sets the Y coordinate in pixels for image cropping. For example, a C
167 setting of 30 will crop an image 30 pixels from the top.
168======================= ======================= =============================== =========================================================================== =============
169
Derek Jones8ede1a22011-10-05 13:34:52 -0500170Setting preferences in a config file
171====================================
172
173If you prefer not to set preferences using the above method, you can
174instead put them into a config file. Simply create a new file called
175image_lib.php, add the $config array in that file. Then save the file
Andrey Andreev3a18df12014-01-06 12:59:11 +0200176in *config/image_lib.php* and it will be used automatically. You will
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600177NOT need to use the ``$this->image_lib->initialize()`` method if you save
Derek Jones8ede1a22011-10-05 13:34:52 -0500178your preferences in a config file.
179
Derek Jones8ede1a22011-10-05 13:34:52 -0500180******************
181Image Watermarking
182******************
183
184The Watermarking feature requires the GD/GD2 library.
185
186Two Types of Watermarking
187=========================
188
189There are two types of watermarking that you can use:
190
NAghajani4d214612015-05-19 02:07:42 +0430191- **Text**: The watermark message will be generated using text, either
Derek Jones8ede1a22011-10-05 13:34:52 -0500192 with a True Type font that you specify, or using the native text
193 output that the GD library supports. If you use the True Type version
194 your GD installation must be compiled with True Type support (most
195 are, but not all).
196- **Overlay**: The watermark message will be generated by overlaying an
197 image (usually a transparent PNG or GIF) containing your watermark
198 over the source image.
199
Andrey Andreev3a18df12014-01-06 12:59:11 +0200200.. _watermarking:
201
Derek Jones8ede1a22011-10-05 13:34:52 -0500202Watermarking an Image
203=====================
204
Andrey Andreev3a18df12014-01-06 12:59:11 +0200205Just as with the other methods (resizing, cropping, and rotating) the
Derek Jones8ede1a22011-10-05 13:34:52 -0500206general process for watermarking involves setting the preferences
207corresponding to the action you intend to perform, then calling the
208watermark function. Here is an example::
209
Derek Jones156c4022011-10-05 15:58:56 -0500210 $config['source_image'] = '/path/to/image/mypic.jpg';
211 $config['wm_text'] = 'Copyright 2006 - John Doe';
212 $config['wm_type'] = 'text';
213 $config['wm_font_path'] = './system/fonts/texb.ttf';
214 $config['wm_font_size'] = '16';
215 $config['wm_font_color'] = 'ffffff';
216 $config['wm_vrt_alignment'] = 'bottom';
217 $config['wm_hor_alignment'] = 'center';
218 $config['wm_padding'] = '20';
219
220 $this->image_lib->initialize($config);
221
222 $this->image_lib->watermark();
Derek Jones8ede1a22011-10-05 13:34:52 -0500223
224The above example will use a 16 pixel True Type font to create the text
225"Copyright 2006 - John Doe". The watermark will be positioned at the
226bottom/center of the image, 20 pixels from the bottom of the image.
227
228.. note:: In order for the image class to be allowed to do any
Andrey Andreev9438e262012-10-05 13:16:27 +0300229 processing, the image file must have "write" file permissions
230 For example, 777.
Derek Jones8ede1a22011-10-05 13:34:52 -0500231
232Watermarking Preferences
233========================
234
NAghajani4d214612015-05-19 02:07:42 +0430235This table shows the preferences that are available for both types of
Derek Jones8ede1a22011-10-05 13:34:52 -0500236watermarking (text or overlay)
237
Joseph Wensley80a11812011-10-06 00:22:49 -0400238======================= =================== ======================= ==========================================================================
239Preference Default Value Options Description
240======================= =================== ======================= ==========================================================================
241**wm_type** text text, overlay Sets the type of watermarking that should be used.
242**source_image** None None Sets the source image name/path. The path must be a relative or absolute
243 server path, not a URL.
244**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or
245 generated dynamically. Note: If you choose the dynamic setting, only one
246 image can be shown at a time, and it can't be positioned on the page. It
247 simply outputs the raw image dynamically to your browser, along with
248 image headers.
249**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the
250 file size.
David Dotsond0c09b92011-11-21 09:56:39 -0600251**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 -0400252 watermark to set it away from the edge of your images.
253**wm_vrt_alignment** bottom top, middle, bottom Sets the vertical alignment for the watermark image.
254**wm_hor_alignment** center left, center, right Sets the horizontal alignment for the watermark image.
255**wm_hor_offset** None None You may specify a horizontal offset (in pixels) to apply to the
256 watermark position. The offset normally moves the watermark to the
257 right, except if you have your alignment set to "right" then your offset
258 value will move the watermark toward the left of the image.
259**wm_vrt_offset** None None You may specify a vertical offset (in pixels) to apply to the watermark
260 position. The offset normally moves the watermark down, except if you
261 have your alignment set to "bottom" then your offset value will move the
262 watermark toward the top of the image.
263======================= =================== ======================= ==========================================================================
264
Derek Jones8ede1a22011-10-05 13:34:52 -0500265Text Preferences
266----------------
267
NAghajani4d214612015-05-19 02:07:42 +0430268This table shows the preferences that are available for the text type of
Derek Jones8ede1a22011-10-05 13:34:52 -0500269watermarking.
270
Joseph Wensley80a11812011-10-06 00:22:49 -0400271======================= =================== =================== ==========================================================================
272Preference Default Value Options Description
273======================= =================== =================== ==========================================================================
274**wm_text** None None The text you would like shown as the watermark. Typically this will be a
275 copyright notice.
276**wm_font_path** None None The server path to the True Type Font you would like to use. If you do
277 not use this option, the native GD font will be used.
278**wm_font_size** 16 None The size of the text. Note: If you are not using the True Type option
279 above, the number is set using a range of 1 - 5. Otherwise, you can use
280 any valid pixel size for the font you're using.
Andrey Andreev64dbdfb2011-12-30 14:14:07 +0200281**wm_font_color** ffffff None The font color, specified in hex. Both the full 6-length (ie, 993300) and
282 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400283**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 +0200284 a drop shadow will not be used. Both the full 6-length (ie, 993300) and
285 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400286**wm_shadow_distance** 3 None The distance (in pixels) from the font that the drop shadow should
287 appear.
288======================= =================== =================== ==========================================================================
289
Derek Jones8ede1a22011-10-05 13:34:52 -0500290Overlay Preferences
291-------------------
292
NAghajani4d214612015-05-19 02:07:42 +0430293This table shows the preferences that are available for the overlay type
Derek Jones8ede1a22011-10-05 13:34:52 -0500294of watermarking.
295
Joseph Wensley80a11812011-10-06 00:22:49 -0400296======================= =================== =================== ==========================================================================
297Preference Default Value Options Description
298======================= =================== =================== ==========================================================================
299**wm_overlay_path** None None The server path to the image you wish to use as your watermark. Required
300 only if you are using the overlay method.
301**wm_opacity** 50 1 - 100 Image opacity. You may specify the opacity (i.e. transparency) of your
302 watermark image. This allows the watermark to be faint and not
303 completely obscure the details from the original image behind it. A 50%
304 opacity is typical.
305**wm_x_transp** 4 A number If your watermark image is a PNG or GIF image, you may specify a color
306 on the image to be "transparent". This setting (along with the next)
307 will allow you to specify that color. This works by specifying the "X"
308 and "Y" coordinate pixel (measured from the upper left) within the image
309 that corresponds to a pixel representative of the color you want to be
310 transparent.
311**wm_y_transp** 4 A number Along with the previous setting, this allows you to specify the
312 coordinate to a pixel representative of the color you want to be
313 transparent.
314======================= =================== =================== ==========================================================================
Andrey Andreev3a18df12014-01-06 12:59:11 +0200315
316***************
317Class Reference
318***************
319
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200320.. php:class:: CI_Image_lib
Andrey Andreev3a18df12014-01-06 12:59:11 +0200321
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200322 .. php:method:: initialize([$props = array()])
Andrey Andreev3a18df12014-01-06 12:59:11 +0200323
Andrey Andreev28c2c972014-02-08 04:27:48 +0200324 :param array $props: Image processing preferences
325 :returns: TRUE on success, FALSE in case of invalid settings
326 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200327
328 Initializes the class for processing an image.
329
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200330 .. php:method:: resize()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200331
Andrey Andreev28c2c972014-02-08 04:27:48 +0200332 :returns: TRUE on success, FALSE on failure
333 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200334
335 The image resizing method lets you resize the original image, create a
336 copy (with or without resizing), or create a thumbnail image.
337
338 For practical purposes there is no difference between creating a copy
339 and creating a thumbnail except a thumb will have the thumbnail marker
340 as part of the name (i.e. mypic_thumb.jpg).
341
342 All preferences listed in the :ref:`processing-preferences` table are available for this
343 method except these three: *rotation_angle*, *x_axis* and *y_axis*.
344
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600345 **Creating a Thumbnail**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200346
347 The resizing method will create a thumbnail file (and preserve the
348 original) if you set this preference to TRUE::
349
350 $config['create_thumb'] = TRUE;
351
352 This single preference determines whether a thumbnail is created or not.
353
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600354 **Creating a Copy**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200355
356 The resizing method will create a copy of the image file (and preserve
357 the original) if you set a path and/or a new filename using this
358 preference::
359
360 $config['new_image'] = '/path/to/new_image.jpg';
361
362 Notes regarding this preference:
363
364 - If only the new image name is specified it will be placed in the same
365 folder as the original
366 - If only the path is specified, the new image will be placed in the
367 destination with the same name as the original.
368 - If both the path and image name are specified it will placed in its
369 own destination and given the new name.
370
Connor Tumbleson75b3fb22014-01-11 06:58:43 -0600371 **Resizing the Original Image**
Andrey Andreev3a18df12014-01-06 12:59:11 +0200372
373 If neither of the two preferences listed above (create_thumb, and
374 new_image) are used, the resizing method will instead target the
375 original image for processing.
376
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200377 .. php:method:: crop()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200378
Andrey Andreev28c2c972014-02-08 04:27:48 +0200379 :returns: TRUE on success, FALSE on failure
380 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200381
382 The cropping method works nearly identically to the resizing function
383 except it requires that you set preferences for the X and Y axis (in
384 pixels) specifying where to crop, like this::
385
Andrey Andreev28c2c972014-02-08 04:27:48 +0200386 $config['x_axis'] = 100;
387 $config['y_axis'] = 40;
Andrey Andreev3a18df12014-01-06 12:59:11 +0200388
389 All preferences listed in the :ref:`processing-preferences` table are available for this
390 method except these: *rotation_angle*, *create_thumb* and *new_image*.
391
392 Here's an example showing how you might crop an image::
393
394 $config['image_library'] = 'imagemagick';
395 $config['library_path'] = '/usr/X11R6/bin/';
396 $config['source_image'] = '/path/to/image/mypic.jpg';
Andrey Andreev28c2c972014-02-08 04:27:48 +0200397 $config['x_axis'] = 100;
398 $config['y_axis'] = 60;
Andrey Andreev3a18df12014-01-06 12:59:11 +0200399
400 $this->image_lib->initialize($config);
401
402 if ( ! $this->image_lib->crop())
403 {
404 echo $this->image_lib->display_errors();
405 }
406
407 .. note:: Without a visual interface it is difficult to crop images, so this
408 method is not very useful unless you intend to build such an
409 interface. That's exactly what we did using for the photo gallery module
410 in ExpressionEngine, the CMS we develop. We added a JavaScript UI that
411 lets the cropping area be selected.
412
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200413 .. php:method:: rotate()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200414
Andrey Andreev28c2c972014-02-08 04:27:48 +0200415 :returns: TRUE on success, FALSE on failure
416 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200417
418 The image rotation method requires that the angle of rotation be set
419 via its preference::
420
421 $config['rotation_angle'] = '90';
422
423 There are 5 rotation options:
424
425 #. 90 - rotates counter-clockwise by 90 degrees.
426 #. 180 - rotates counter-clockwise by 180 degrees.
427 #. 270 - rotates counter-clockwise by 270 degrees.
428 #. hor - flips the image horizontally.
429 #. vrt - flips the image vertically.
430
431 Here's an example showing how you might rotate an image::
432
433 $config['image_library'] = 'netpbm';
434 $config['library_path'] = '/usr/bin/';
435 $config['source_image'] = '/path/to/image/mypic.jpg';
436 $config['rotation_angle'] = 'hor';
437
438 $this->image_lib->initialize($config);
439
440 if ( ! $this->image_lib->rotate())
441 {
442 echo $this->image_lib->display_errors();
443 }
444
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200445 .. php:method:: watermark()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200446
Andrey Andreev28c2c972014-02-08 04:27:48 +0200447 :returns: TRUE on success, FALSE on failure
448 :rtype: bool
Andrey Andreev3a18df12014-01-06 12:59:11 +0200449
450 Creates a watermark over an image, please refer to the :ref:`watermarking`
451 section for more info.
452
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200453 .. php:method:: clear()
Andrey Andreev3a18df12014-01-06 12:59:11 +0200454
Andrey Andreev28c2c972014-02-08 04:27:48 +0200455 :rtype: void
Andrey Andreev3a18df12014-01-06 12:59:11 +0200456
457 The clear method resets all of the values used when processing an
458 image. You will want to call this if you are processing images in a
459 loop.
460
461 ::
462
463 $this->image_lib->clear();
464
Andrey Andreevcd3d9db2015-02-02 13:41:01 +0200465 .. php:method:: display_errors([$open = '<p>[, $close = '</p>']])
Andrey Andreev3a18df12014-01-06 12:59:11 +0200466
Andrey Andreev28c2c972014-02-08 04:27:48 +0200467 :param string $open: Error message opening tag
468 :param string $close: Error message closing tag
469 :returns: Error messages
470 :rtype: string
Andrey Andreev3a18df12014-01-06 12:59:11 +0200471
472 Returns all detected errors formatted as a string.
473 ::
474
Andrey Andreev6bb91702016-01-02 02:14:20 +0200475 echo $this->image_lib->display_errors();