blob: dcdccbd9200c9431d64bb8a324a4a220eddbbf88 [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
22**********************
23Initializing the Class
24**********************
25
26Like most other classes in CodeIgniter, the image class is initialized
27in your controller using the $this->load->library function::
28
29 $this->load->library('image_lib');
30
31Once the library is loaded it will be ready for use. The image library
32object you will use to call all functions is: $this->image_lib
33
34Processing an Image
35===================
36
37Regardless of the type of processing you would like to perform
38(resizing, cropping, rotation, or watermarking), the general process is
39identical. You will set some preferences corresponding to the action you
40intend to perform, then call one of four available processing functions.
41For example, to create an image thumbnail you'll do this::
42
Derek Jones156c4022011-10-05 15:58:56 -050043 $config['image_library'] = 'gd2';
44 $config['source_image'] = '/path/to/image/mypic.jpg';
45 $config['create_thumb'] = TRUE;
46 $config['maintain_ratio'] = TRUE;
47 $config['width'] = 75;
48 $config['height'] = 50;
49
50 $this->load->library('image_lib', $config);
51
52 $this->image_lib->resize();
Derek Jones8ede1a22011-10-05 13:34:52 -050053
54The above code tells the image_resize function to look for an image
55called *mypic.jpg* located in the source_image folder, then create a
56thumbnail that is 75 X 50 pixels using the GD2 image_library. Since the
57maintain_ratio option is enabled, the thumb will be as close to the
58target width and height as possible while preserving the original aspect
59ratio. The thumbnail will be called *mypic_thumb.jpg*
60
61.. note:: In order for the image class to be allowed to do any
62 processing, the folder containing the image files must have write
63 permissions.
64
65.. note:: Image processing can require a considerable amount of server
66 memory for some operations. If you are experiencing out of memory errors
67 while processing images you may need to limit their maximum size, and/or
68 adjust PHP memory limits.
69
70Processing Functions
71====================
72
73There are four available processing functions:
74
75- $this->image_lib->resize()
76- $this->image_lib->crop()
77- $this->image_lib->rotate()
78- $this->image_lib->watermark()
79- $this->image_lib->clear()
80
81These functions return boolean TRUE upon success and FALSE for failure.
82If they fail you can retrieve the error message using this function::
83
84 echo $this->image_lib->display_errors();
85
86A good practice is use the processing function conditionally, showing an
87error upon failure, like this::
88
Derek Jones156c4022011-10-05 15:58:56 -050089 if ( ! $this->image_lib->resize())
90 {
91 echo $this->image_lib->display_errors();
92 }
Derek Jones8ede1a22011-10-05 13:34:52 -050093
Andrey Andreev9438e262012-10-05 13:16:27 +030094.. note:: You can optionally specify the HTML formatting to be applied to
95 the errors, by submitting the opening/closing tags in the function,
96 like this::
Derek Jones8ede1a22011-10-05 13:34:52 -050097
98 $this->image_lib->display_errors('<p>', '</p>');
99
100Preferences
101===========
102
103The preferences described below allow you to tailor the image processing
104to suit your needs.
105
106Note that not all preferences are available for every function. For
107example, the x/y axis preferences are only available for image cropping.
108Likewise, the width and height preferences have no effect on cropping.
109The "availability" column indicates which functions support a given
110preference.
111
112Availability Legend:
113
114- R - Image Resizing
115- C - Image Cropping
116- X - Image Rotation
117- W - Image Watermarking
118
Joseph Wensley80a11812011-10-06 00:22:49 -0400119======================= ======================= =============================== =========================================================================== =============
120Preference Default Value Options Description Availability
121======================= ======================= =============================== =========================================================================== =============
122**image_library** GD2 GD, GD2, ImageMagick, NetPBM Sets the image library to be used. R, C, X, W
123**library_path** None None Sets the server path to your ImageMagick or NetPBM library. If you use R, C, X
124 either of those libraries you must supply the path. R, C, S, W
125**source_image** None None Sets the source image name/path. The path must be a relative or absolute
126 server path, not a URL.
127**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or R, C, X, W
128 generated dynamically. Note: If you choose the dynamic setting, only one
129 image can be shown at a time, and it can't be positioned on the page. It
130 simply outputs the raw image dynamically to your browser, along with
131 image headers.
132**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the R, C, X, W
133 file size.
134**new_image** None None Sets the destination image name/path. You'll use this preference when R, C, X, W
135 creating an image copy. The path must be a relative or absolute server
136 path, not a URL.
137**width** None None Sets the width you would like the image set to. R, C
138**height** None None Sets the height you would like the image set to. R, C
139**create_thumb** FALSE TRUE/FALSE (boolean) Tells the image processing function to create a thumb. R
140**thumb_marker** _thumb None Specifies the thumbnail indicator. It will be inserted just before the R
141 file extension, so mypic.jpg would become mypic_thumb.jpg
142**maintain_ratio** TRUE TRUE/FALSE (boolean) Specifies whether to maintain the original aspect ratio when resizing or R, C
143 use hard values.
144**master_dim** auto auto, width, height Specifies what to use as the master axis when resizing or creating R
145 thumbs. For example, let's say you want to resize an image to 100 X 75
146 pixels. If the source image size does not allow perfect resizing to
147 those dimensions, this setting determines which axis should be used as
148 the hard value. "auto" sets the axis automatically based on whether the
149 image is taller then wider, or vice versa.
150**rotation_angle** None 90, 180, 270, vrt, hor Specifies the angle of rotation when rotating images. Note that PHP X
151 rotates counter-clockwise, so a 90 degree rotation to the right must be
152 specified as 270.
153**x_axis** None None Sets the X coordinate in pixels for image cropping. For example, a C
154 setting of 30 will crop an image 30 pixels from the left.
155**y_axis** None None Sets the Y coordinate in pixels for image cropping. For example, a C
156 setting of 30 will crop an image 30 pixels from the top.
157======================= ======================= =============================== =========================================================================== =============
158
Derek Jones8ede1a22011-10-05 13:34:52 -0500159Setting preferences in a config file
160====================================
161
162If you prefer not to set preferences using the above method, you can
163instead put them into a config file. Simply create a new file called
164image_lib.php, add the $config array in that file. Then save the file
165in: config/image_lib.php and it will be used automatically. You will
166NOT need to use the $this->image_lib->initialize function if you save
167your preferences in a config file.
168
169$this->image_lib->resize()
170===========================
171
172The image resizing function lets you resize the original image, create a
173copy (with or without resizing), or create a thumbnail image.
174
175For practical purposes there is no difference between creating a copy
176and creating a thumbnail except a thumb will have the thumbnail marker
177as part of the name (ie, mypic_thumb.jpg).
178
179All preferences listed in the table above are available for this
180function except these three: rotation_angle, x_axis, and y_axis.
181
182Creating a Thumbnail
183--------------------
184
185The resizing function will create a thumbnail file (and preserve the
186original) if you set this preference to TRUE::
187
188 $config['create_thumb'] = TRUE;
189
190This single preference determines whether a thumbnail is created or not.
191
192Creating a Copy
193---------------
194
195The resizing function will create a copy of the image file (and preserve
196the original) if you set a path and/or a new filename using this
197preference::
198
199 $config['new_image'] = '/path/to/new_image.jpg';
200
201Notes regarding this preference:
202
203- If only the new image name is specified it will be placed in the same
204 folder as the original
205- If only the path is specified, the new image will be placed in the
206 destination with the same name as the original.
207- If both the path and image name are specified it will placed in its
208 own destination and given the new name.
209
210Resizing the Original Image
211---------------------------
212
213If neither of the two preferences listed above (create_thumb, and
214new_image) are used, the resizing function will instead target the
215original image for processing.
216
217$this->image_lib->crop()
218=========================
219
220The cropping function works nearly identically to the resizing function
221except it requires that you set preferences for the X and Y axis (in
222pixels) specifying where to crop, like this::
223
Derek Jones156c4022011-10-05 15:58:56 -0500224 $config['x_axis'] = '100';
225 $config['y_axis'] = '40';
Derek Jones8ede1a22011-10-05 13:34:52 -0500226
227All preferences listed in the table above are available for this
Andrey Andreev9438e262012-10-05 13:16:27 +0300228function except these: rotation_angle, create_thumb, new_image.
Derek Jones8ede1a22011-10-05 13:34:52 -0500229
230Here's an example showing how you might crop an image::
231
Derek Jones156c4022011-10-05 15:58:56 -0500232 $config['image_library'] = 'imagemagick';
233 $config['library_path'] = '/usr/X11R6/bin/';
234 $config['source_image'] = '/path/to/image/mypic.jpg';
235 $config['x_axis'] = '100';
236 $config['y_axis'] = '60';
237
238 $this->image_lib->initialize($config);
239
240 if ( ! $this->image_lib->crop())
241 {
242 echo $this->image_lib->display_errors();
243 }
Derek Jones8ede1a22011-10-05 13:34:52 -0500244
Andrey Andreev9438e262012-10-05 13:16:27 +0300245.. note:: Without a visual interface it is difficult to crop images, so this
246 function is not very useful unless you intend to build such an
247 interface. That's exactly what we did using for the photo gallery module
248 in ExpressionEngine, the CMS we develop. We added a JavaScript UI that
249 lets the cropping area be selected.
Derek Jones8ede1a22011-10-05 13:34:52 -0500250
251$this->image_lib->rotate()
252===========================
253
254The image rotation function requires that the angle of rotation be set
255via its preference::
256
257 $config['rotation_angle'] = '90';
258
259There are 5 rotation options:
260
261#. 90 - rotates counter-clockwise by 90 degrees.
262#. 180 - rotates counter-clockwise by 180 degrees.
263#. 270 - rotates counter-clockwise by 270 degrees.
264#. hor - flips the image horizontally.
265#. vrt - flips the image vertically.
266
267Here's an example showing how you might rotate an image::
268
Derek Jones156c4022011-10-05 15:58:56 -0500269 $config['image_library'] = 'netpbm';
270 $config['library_path'] = '/usr/bin/';
271 $config['source_image'] = '/path/to/image/mypic.jpg';
272 $config['rotation_angle'] = 'hor';
273
274 $this->image_lib->initialize($config);
275
276 if ( ! $this->image_lib->rotate())
277 {
278 echo $this->image_lib->display_errors();
279 }
Derek Jones8ede1a22011-10-05 13:34:52 -0500280
281$this->image_lib->clear()
282==========================
283
284The clear function resets all of the values used when processing an
285image. You will want to call this if you are processing images in a
286loop.
287
288::
289
290 $this->image_lib->clear();
291
292
293******************
294Image Watermarking
295******************
296
297The Watermarking feature requires the GD/GD2 library.
298
299Two Types of Watermarking
300=========================
301
302There are two types of watermarking that you can use:
303
304- **Text**: The watermark message will be generating using text, either
305 with a True Type font that you specify, or using the native text
306 output that the GD library supports. If you use the True Type version
307 your GD installation must be compiled with True Type support (most
308 are, but not all).
309- **Overlay**: The watermark message will be generated by overlaying an
310 image (usually a transparent PNG or GIF) containing your watermark
311 over the source image.
312
313Watermarking an Image
314=====================
315
316Just as with the other functions (resizing, cropping, and rotating) the
317general process for watermarking involves setting the preferences
318corresponding to the action you intend to perform, then calling the
319watermark function. Here is an example::
320
Derek Jones156c4022011-10-05 15:58:56 -0500321 $config['source_image'] = '/path/to/image/mypic.jpg';
322 $config['wm_text'] = 'Copyright 2006 - John Doe';
323 $config['wm_type'] = 'text';
324 $config['wm_font_path'] = './system/fonts/texb.ttf';
325 $config['wm_font_size'] = '16';
326 $config['wm_font_color'] = 'ffffff';
327 $config['wm_vrt_alignment'] = 'bottom';
328 $config['wm_hor_alignment'] = 'center';
329 $config['wm_padding'] = '20';
330
331 $this->image_lib->initialize($config);
332
333 $this->image_lib->watermark();
Derek Jones8ede1a22011-10-05 13:34:52 -0500334
335The above example will use a 16 pixel True Type font to create the text
336"Copyright 2006 - John Doe". The watermark will be positioned at the
337bottom/center of the image, 20 pixels from the bottom of the image.
338
339.. note:: In order for the image class to be allowed to do any
Andrey Andreev9438e262012-10-05 13:16:27 +0300340 processing, the image file must have "write" file permissions
341 For example, 777.
Derek Jones8ede1a22011-10-05 13:34:52 -0500342
343Watermarking Preferences
344========================
345
346This table shown the preferences that are available for both types of
347watermarking (text or overlay)
348
Joseph Wensley80a11812011-10-06 00:22:49 -0400349======================= =================== ======================= ==========================================================================
350Preference Default Value Options Description
351======================= =================== ======================= ==========================================================================
352**wm_type** text text, overlay Sets the type of watermarking that should be used.
353**source_image** None None Sets the source image name/path. The path must be a relative or absolute
354 server path, not a URL.
355**dynamic_output** FALSE TRUE/FALSE (boolean) Determines whether the new image file should be written to disk or
356 generated dynamically. Note: If you choose the dynamic setting, only one
357 image can be shown at a time, and it can't be positioned on the page. It
358 simply outputs the raw image dynamically to your browser, along with
359 image headers.
360**quality** 90% 1 - 100% Sets the quality of the image. The higher the quality the larger the
361 file size.
David Dotsond0c09b92011-11-21 09:56:39 -0600362**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 -0400363 watermark to set it away from the edge of your images.
364**wm_vrt_alignment** bottom top, middle, bottom Sets the vertical alignment for the watermark image.
365**wm_hor_alignment** center left, center, right Sets the horizontal alignment for the watermark image.
366**wm_hor_offset** None None You may specify a horizontal offset (in pixels) to apply to the
367 watermark position. The offset normally moves the watermark to the
368 right, except if you have your alignment set to "right" then your offset
369 value will move the watermark toward the left of the image.
370**wm_vrt_offset** None None You may specify a vertical offset (in pixels) to apply to the watermark
371 position. The offset normally moves the watermark down, except if you
372 have your alignment set to "bottom" then your offset value will move the
373 watermark toward the top of the image.
374======================= =================== ======================= ==========================================================================
375
Derek Jones8ede1a22011-10-05 13:34:52 -0500376Text Preferences
377----------------
378
379This table shown the preferences that are available for the text type of
380watermarking.
381
Joseph Wensley80a11812011-10-06 00:22:49 -0400382======================= =================== =================== ==========================================================================
383Preference Default Value Options Description
384======================= =================== =================== ==========================================================================
385**wm_text** None None The text you would like shown as the watermark. Typically this will be a
386 copyright notice.
387**wm_font_path** None None The server path to the True Type Font you would like to use. If you do
388 not use this option, the native GD font will be used.
389**wm_font_size** 16 None The size of the text. Note: If you are not using the True Type option
390 above, the number is set using a range of 1 - 5. Otherwise, you can use
391 any valid pixel size for the font you're using.
Andrey Andreev64dbdfb2011-12-30 14:14:07 +0200392**wm_font_color** ffffff None The font color, specified in hex. Both the full 6-length (ie, 993300) and
393 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400394**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 +0200395 a drop shadow will not be used. Both the full 6-length (ie, 993300) and
396 the short three character abbreviated version (ie, fff) are supported.
Joseph Wensley80a11812011-10-06 00:22:49 -0400397**wm_shadow_distance** 3 None The distance (in pixels) from the font that the drop shadow should
398 appear.
399======================= =================== =================== ==========================================================================
400
Derek Jones8ede1a22011-10-05 13:34:52 -0500401Overlay Preferences
402-------------------
403
404This table shown the preferences that are available for the overlay type
405of watermarking.
406
Joseph Wensley80a11812011-10-06 00:22:49 -0400407======================= =================== =================== ==========================================================================
408Preference Default Value Options Description
409======================= =================== =================== ==========================================================================
410**wm_overlay_path** None None The server path to the image you wish to use as your watermark. Required
411 only if you are using the overlay method.
412**wm_opacity** 50 1 - 100 Image opacity. You may specify the opacity (i.e. transparency) of your
413 watermark image. This allows the watermark to be faint and not
414 completely obscure the details from the original image behind it. A 50%
415 opacity is typical.
416**wm_x_transp** 4 A number If your watermark image is a PNG or GIF image, you may specify a color
417 on the image to be "transparent". This setting (along with the next)
418 will allow you to specify that color. This works by specifying the "X"
419 and "Y" coordinate pixel (measured from the upper left) within the image
420 that corresponds to a pixel representative of the color you want to be
421 transparent.
422**wm_y_transp** 4 A number Along with the previous setting, this allows you to specify the
423 coordinate to a pixel representative of the color you want to be
424 transparent.
425======================= =================== =================== ==========================================================================