1 Do not edit this file, it is generated automatically by apidocs.perl
2 from Imager's source files.
4 Each function description has a comment listing the source file where
5 you can find the documentation.
9 Imager::APIRef - Imager's C API - reference.
14 color.rgba.r = 255; color.rgba.g = 0; color.rgba.b = 255;
18 poly.count = sizeof(x) / sizeof(*x);
28 black.rgba.r = black.rgba.g = black.rgba.b = black.rgba.a = 0;
32 printf("left %" i_DF "\n", i_DFc(x));
33 printf("point (" i_DFp ")\n", i_DFcp(x, y));
36 i_arc(im, 50, 50, 20, 45, 135, &color);
37 i_arc_cfill(im, 50, 50, 35, 90, 135, fill);
38 i_arc_aa(im, 50, 50, 35, 90, 135, &color);
39 i_arc_aa_cfill(im, 50, 50, 35, 90, 135, fill);
40 i_circle_aa(im, 50, 50, 45, &color);
41 i_box(im, 0, 0, im->xsize-1, im->ysize-1, &color).
42 i_box_filled(im, 0, 0, im->xsize-1, im->ysize-1, &color);
43 i_box_cfill(im, 0, 0, im->xsize-1, im->ysize-1, fill);
44 i_flood_fill(im, 50, 50, &color);
45 i_flood_cfill(im, 50, 50, fill);
46 i_flood_fill_border(im, 50, 50, &color, &border);
47 i_flood_cfill_border(im, 50, 50, fill, border);
48 i_poly_poly_aa(im, 1, &poly, mode, color);
49 i_poly_aa_m(im, count, x, y, mode, color);
50 i_poly_poly_aa_cfill(im, 1, &poly, mode, fill);
51 i_poly_aa_cfill(im, count, x, y, mode, fill);
54 im_clear_error(aIMCTX);
56 i_push_error(0, "Yep, it's broken");
57 i_push_error(errno, "Error writing");
58 im_push_error(aIMCTX, 0, "Something is wrong");
60 va_start(args, lastarg);
61 im_push_errorvf(ctx, code, format, args);
62 i_push_errorf(errno, "Cannot open file %s: %d", filename, errno);
63 im_push_errorf(aIMCTX, errno, "Cannot open file %s: %d", filename, errno);
66 im_set_image_file_limits(aIMCTX, 500, 500, 1000000);
67 i_set_image_file_limits(500, 500, 1000000);
68 im_get_image_file_limits(aIMCTX, &width, &height, &bytes)
69 i_get_image_file_limits(&width, &height, &bytes)
70 im_int_check_image_file_limits(aIMCTX, width, height, channels, sizeof(i_sample_t))
71 i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t))
74 i_fill_t *fill = i_new_fill_solidf(&fcolor, combine);
75 i_fill_t *fill = i_new_fill_solid(&color, combine);
76 i_fill_t *fill = i_new_fill_hatch(&fg_color, &bg_color, combine, hatch, custom_hatch, dx, dy);
77 i_fill_t *fill = i_new_fill_hatchf(&fg_fcolor, &bg_fcolor, combine, hatch, custom_hatch, dx, dy);
78 i_fill_t *fill = i_new_fill_image(src_img, matrix, x_offset, y_offset, combine);
79 fill = i_new_fill_fount(0, 0, 100, 100, i_ft_linear, i_ft_linear,
80 i_fr_triangle, 0, i_fts_grid, 9, 1, segs);
84 ssize_t count = i_io_peekn(ig, buffer, sizeof(buffer));
85 ssize_t result = i_io_write(io, buffer, size)
87 ssize_t len = i_io_gets(buffer, sizeof(buffer), '\n');
92 # Image creation/destruction
93 i_img *img = i_sametype(src, width, height);
94 i_img *img = i_sametype_chans(src, width, height, channels);
95 i_img *img = im_img_16_new(aIMCTX, width, height, channels);
96 i_img *img = i_img_16_new(width, height, channels);
97 i_img *img = im_img_8_new(aIMCTX, width, height, channels);
98 i_img *img = i_img_8_new(width, height, channels);
99 i_img *img = im_img_double_new(aIMCTX, width, height, channels);
100 i_img *img = i_img_double_new(width, height, channels);
101 i_img *img = im_img_pal_new(aIMCTX, width, height, channels, max_palette_size)
102 i_img *img = i_img_pal_new(width, height, channels, max_palette_size)
105 # Image Implementation
106 i_img *im = im_img_alloc(aIMCTX);
107 i_img *im = i_img_alloc();
108 im_img_init(aIMCTX, im);
112 // only channel 0 writable
113 i_img_setmask(img, 0x01);
114 int mask = i_img_getmask(img);
115 int channels = i_img_getchannels(img);
116 i_img_dim width = i_img_get_width(im);
117 i_img_dim height = i_img_get_height(im);
118 i_color_model_t cm = i_img_color_model(im);
120 int has_alpha = i_img_alpha_channel(im, &alpha_channel);
121 int color_channels = i_img_color_channels(im);
131 i_mutex_t m = i_mutex_new();
139 i_tags_set(&img->tags, "i_comment", -1);
140 i_tags_setn(&img->tags, "i_xres", 204);
141 i_tags_setn(&img->tags, "i_yres", 196);
149 =item i_render_color(r, x, y, width, source, color)
151 Render the given color with the coverage specified by C<source[0]> to
154 Renders in normal combine mode.
160 =item i_render_delete(r)
162 Release an C<i_render> object.
168 =item i_render_fill(r, x, y, width, source, fill)
170 Render the given fill with the coverage in C<source[0]> through
177 =item i_render_line(r, x, y, width, source, fill)
179 Render the given fill with the coverage in C<source[0]> through
186 =item i_render_linef(r, x, y, width, source, fill)
188 Render the given fill with the coverage in C<source[0]> through
195 =item i_render_new(im, width)
197 Allocate a new C<i_render> object and initialize it.
214 This is Imager's image type.
216 It contains the following members:
222 C<channels> - the number of channels in the image
226 C<xsize>, C<ysize> - the width and height of the image in pixels
230 C<bytes> - the number of bytes used to store the image data. Undefined
231 where virtual is non-zero.
235 C<ch_mask> - a mask of writable channels. eg. if this is 6 then only
236 channels 1 and 2 are writable. There may be bits set for which there
237 are no channels in the image.
241 C<bits> - the number of bits stored per sample. Should be one of
242 i_8_bits, i_16_bits, i_double_bits.
246 C<type> - either i_direct_type for direct color images, or i_palette_type
251 C<virtual> - if zero then this image is-self contained. If non-zero
252 then this image could be an interface to some other implementation.
256 C<idata> - the image data. This should not be directly accessed. A new
257 image implementation can use this to store its image data.
258 i_img_destroy() will myfree() this pointer if it's non-null.
262 C<tags> - a structure storing the image's tags. This should only be
263 accessed via the i_tags_*() functions.
267 C<ext_data> - a pointer for use internal to an image implementation.
268 This should be freed by the image's destroy handler.
272 C<im_data> - data internal to Imager. This is initialized by
277 i_f_ppix, i_f_ppixf, i_f_plin, i_f_plinf, i_f_gpix, i_f_gpixf,
278 i_f_glin, i_f_glinf, i_f_gsamp, i_f_gampf - implementations for each
279 of the required image functions. An image implementation should
280 initialize these between calling i_img_alloc() and i_img_init().
284 i_f_gpal, i_f_ppal, i_f_addcolors, i_f_getcolors, i_f_colorcount,
285 i_f_maxcolors, i_f_findcolor, i_f_setcolors - implementations for each
286 paletted image function.
290 i_f_destroy - custom image destruction function. This should be used
291 to release memory if necessary.
295 i_f_gsamp_bits - implements i_gsamp_bits() for this image.
299 i_f_psamp_bits - implements i_psamp_bits() for this image.
303 i_f_psamp - implements psamp() for this image.
307 i_f_psampf - implements psamp() for this image.
311 C<im_data> - image specific data internal to Imager.
315 C<context> - the Imager API context this image belongs to.
321 From: File imdatatypes.h
326 black.rgba.r = black.rgba.g = black.rgba.b = black.rgba.a = 0;
328 Type for 8-bit/sample color.
334 i_color is a union of:
340 gray - contains a single element gray_color, eg. C<c.gray.gray_color>
344 C<rgb> - contains three elements C<r>, C<g>, C<b>, eg. C<c.rgb.r>
348 C<rgba> - contains four elements C<r>, C<g>, C<b>, C<a>, eg. C<c.rgba.a>
352 C<cmyk> - contains four elements C<c>, C<m>, C<y>, C<k>,
353 eg. C<c.cmyk.y>. Note that Imager never uses CMYK colors except when
354 reading/writing files.
358 channels - an array of four channels, eg C<c.channels[2]>.
364 From: File imdatatypes.h
368 This is the double/sample color type.
370 Its layout exactly corresponds to i_color.
374 From: File imdatatypes.h
380 This is the "abstract" base type for Imager's fill types.
382 Unless you're implementing a new fill type you'll typically treat this
387 From: File imdatatypes.h
389 =item i_poly_fill_mode_t
391 Control how polygons are filled. Has the following values:
397 C<i_pfm_evenodd> - simple even-odd fills.
401 C<i_pfm_nonzero> - non-zero winding rule fills.
407 From: File imdatatypes.h
411 Represents a polygon. Has the following members:
417 C<x>, C<y> - arrays of x and y locations of vertices.
421 C<count> - the number of entries in the C<x> and C<y> arrays.
427 From: File imdatatypes.h
431 Imager's per-thread context.
435 From: File imdatatypes.h
439 Represents a slot in the context object.
443 From: File imdatatypes.h
449 A signed integer type that represents an image dimension or ordinate.
451 May be larger than int on some platforms.
455 From: File imdatatypes.h
461 An unsigned variant of L</i_img_dim>.
465 From: File imdatatypes.h
467 =item i_color_model_t
469 Returned by L</i_img_color_model(im)> to indicate the color model of
472 An enumerated type with the following possible values:
478 C<icm_unknown> - the image has no usable color data. In future
479 versions of Imager this will be returned in a few limited cases,
480 eg. when the source image is CMYK and the user has requested no color
485 C<icm_gray> - gray scale with no alpha channel.
489 C<icm_gray_alpha> - gray scale with an alpha channel.
497 C<icm_rgb_alpha> - RGB with an alpha channel.
503 From: File imdatatypes.h
507 printf("left %" i_DF "\n", i_DFc(x));
509 This is a constant string that can be used with functions like
510 printf() to format i_img_dim values after they're been cast with i_DFc().
512 Does not include the leading C<%>.
516 From: File imdatatypes.h
520 Cast an C<i_img_dim> value to a type for use with the i_DF format
525 From: File imdatatypes.h
529 Casts two C<i_img_dim> values for use with the i_DF (or i_DFp) format.
533 From: File imdatatypes.h
537 printf("point (" i_DFp ")\n", i_DFcp(x, y));
539 Format a pair of C<i_img_dim> values. This format string I<does>
540 include the leading C<%>.
544 From: File imdatatypes.h
553 =item i_arc(im, x, y, rad, d1, d2, color)
556 i_arc(im, 50, 50, 20, 45, 135, &color);
558 Fills an arc centered at (x,y) with radius I<rad> covering the range
559 of angles in degrees from d1 to d2, with the color.
565 =item i_arc_aa(im, x, y, rad, d1, d2, color)
568 i_arc_aa(im, 50, 50, 35, 90, 135, &color);
570 Anti-alias fills an arc centered at (x,y) with radius I<rad> covering
571 the range of angles in degrees from d1 to d2, with the color.
577 =item i_arc_aa_cfill(im, x, y, rad, d1, d2, fill)
580 i_arc_aa_cfill(im, 50, 50, 35, 90, 135, fill);
582 Anti-alias fills an arc centered at (x,y) with radius I<rad> covering
583 the range of angles in degrees from d1 to d2, with the fill object.
589 =item i_arc_cfill(im, x, y, rad, d1, d2, fill)
592 i_arc_cfill(im, 50, 50, 35, 90, 135, fill);
594 Fills an arc centered at (x,y) with radius I<rad> covering the range
595 of angles in degrees from d1 to d2, with the fill object.
601 =item i_box(im, x1, y1, x2, y2, color)
604 i_box(im, 0, 0, im->xsize-1, im->ysize-1, &color).
606 Outlines the box from (x1,y1) to (x2,y2) inclusive with I<color>.
612 =item i_box_cfill(im, x1, y1, x2, y2, fill)
615 i_box_cfill(im, 0, 0, im->xsize-1, im->ysize-1, fill);
617 Fills the box from (x1,y1) to (x2,y2) inclusive with fill.
623 =item i_box_filled(im, x1, y1, x2, y2, color)
626 i_box_filled(im, 0, 0, im->xsize-1, im->ysize-1, &color);
628 Fills the box from (x1,y1) to (x2,y2) inclusive with color.
634 =item i_circle_aa(im, x, y, rad, color)
637 i_circle_aa(im, 50, 50, 45, &color);
639 Anti-alias fills a circle centered at (x,y) for radius I<rad> with
646 =item i_flood_cfill(C<im>, C<seedx>, C<seedy>, C<fill>)
649 i_flood_cfill(im, 50, 50, fill);
651 Flood fills the 4-connected region starting from the point (C<seedx>,
652 C<seedy>) with C<fill>.
654 Returns false if (C<seedx>, C<seedy>) are outside the image.
660 =item i_flood_cfill_border(C<im>, C<seedx>, C<seedy>, C<fill>, C<border>)
663 i_flood_cfill_border(im, 50, 50, fill, border);
665 Flood fills the 4-connected region starting from the point (C<seedx>,
666 C<seedy>) with C<fill>, the fill stops when it reaches pixels of color
669 Returns false if (C<seedx>, C<seedy>) are outside the image.
675 =item i_flood_fill(C<im>, C<seedx>, C<seedy>, C<color>)
678 i_flood_fill(im, 50, 50, &color);
680 Flood fills the 4-connected region starting from the point (C<seedx>,
681 C<seedy>) with I<color>.
683 Returns false if (C<seedx>, C<seedy>) are outside the image.
689 =item i_flood_fill_border(C<im>, C<seedx>, C<seedy>, C<color>, C<border>)
692 i_flood_fill_border(im, 50, 50, &color, &border);
694 Flood fills the 4-connected region starting from the point (C<seedx>,
695 C<seedy>) with C<color>, fill stops when the fill reaches a pixels
696 with color C<border>.
698 Returns false if (C<seedx>, C<seedy>) are outside the image.
704 =item i_glin(im, l, r, y, colors)
707 Retrieves (r-l) pixels starting from (l,y) into I<colors>.
709 Returns the number of pixels retrieved.
715 =item i_glinf(im, l, r, y, colors)
718 Retrieves (r-l) pixels starting from (l,y) into I<colors> as floating
721 Returns the number of pixels retrieved.
727 =item i_gpal(im, left, right, y, indexes)
730 Reads palette indexes for the horizontal line (left, y) to (right-1,
733 Returns the number of indexes read.
735 Always returns 0 for direct color images.
741 =item i_gpix(im, C<x>, C<y>, C<color>)
744 Retrieves the C<color> of the pixel (x,y).
746 Returns 0 if the pixel was retrieved, or -1 if not.
752 =item i_gpixf(im, C<x>, C<y>, C<fcolor>)
755 Retrieves the color of the pixel (x,y) as a floating point color into
758 Returns 0 if the pixel was retrieved, or -1 if not.
764 =item i_gsamp(im, left, right, y, samples, channels, channel_count)
767 Reads sample values from C<im> for the horizontal line (left, y) to
768 (right-1,y) for the channels specified by C<channels>, an array of int
769 with C<channel_count> elements.
771 If channels is NULL then the first channels_count channels are retrieved for
774 Returns the number of samples read (which should be (right-left) *
781 =item i_gsamp_bg(im, l, r, y, samples, out_channels, background)
784 Like C<i_gsampf()> but applies the source image color over a supplied
787 This is intended for output to image formats that don't support alpha
794 =item i_gsamp_bits(im, left, right, y, samples, channels, channel_count, bits)
796 Reads integer samples scaled to C<bits> bits of precision into the
797 C<unsigned int> array C<samples>.
799 Expect this to be slow unless C<< bits == im->bits >>.
801 Returns the number of samples copied, or -1 on error.
803 Not all image types implement this method.
805 Pushes errors, but does not call C<i_clear_error()>.
811 =item i_gsampf(im, left, right, y, samples, channels, channel_count)
814 Reads floating point sample values from C<im> for the horizontal line
815 (left, y) to (right-1,y) for the channels specified by C<channels>, an
816 array of int with channel_count elements.
818 If C<channels> is NULL then the first C<channel_count> channels are
819 retrieved for each pixel.
821 Returns the number of samples read (which should be (C<right>-C<left>)
828 =item i_gsampf_bg(im, l, r, y, samples, out_channels, background)
831 Like C<i_gsampf()> but applies the source image color over a supplied
834 This is intended for output to image formats that don't support alpha
841 =item i_line(C<im>, C<x1>, C<y1>, C<x2>, C<y2>, C<color>, C<endp>)
844 =for stopwords Bresenham's
846 Draw a line to image using Bresenham's line drawing algorithm
848 im - image to draw to
849 x1 - starting x coordinate
850 y1 - starting x coordinate
851 x2 - starting x coordinate
852 y2 - starting x coordinate
853 color - color to write to image
854 endp - endpoint flag (boolean)
860 =item i_line_aa(C<im>, C<x1>, C<x2>, C<y1>, C<y2>, C<color>, C<endp>)
863 Anti-alias draws a line from (x1,y1) to (x2, y2) in color.
865 The point (x2, y2) is drawn only if C<endp> is set.
871 =item i_plin(im, l, r, y, colors)
874 Sets (r-l) pixels starting from (l,y) using (r-l) values from
877 Returns the number of pixels set.
883 =item i_plinf(im, C<left>, C<right>, C<fcolors>)
886 Sets (right-left) pixels starting from (left,y) using (right-left)
887 floating point colors from C<fcolors>.
889 Returns the number of pixels set.
895 =item i_poly_aa_cfill_m(im, count, x, y, mode, fill)
897 i_poly_aa_cfill(im, count, x, y, mode, fill);
899 Fill a polygon defined by the points specified by the x and y arrays with
900 the fill specified by C<fill>.
906 =item i_poly_aa_m(im, count, x, y, mode, color)
908 i_poly_aa_m(im, count, x, y, mode, color);
910 Fill a polygon defined by the points specified by the x and y arrays with
911 the color specified by C<color>.
917 =item i_poly_poly_aa(im, count, polys, mode, color)
919 i_poly_poly_aa(im, 1, &poly, mode, color);
921 Fill the C<count> polygons defined by C<polys> the color specified by
924 At least one polygon must be supplied.
926 All polygons must have at least 3 points.
932 =item i_poly_poly_aa_cfill(im, count, polys, mode, fill)
934 i_poly_poly_aa_cfill(im, 1, &poly, mode, fill);
936 Fill the C<count> polygons defined by C<polys> the fill specified by
939 At least one polygon must be supplied.
941 All polygons must have at least 3 points.
947 =item i_ppal(im, left, right, y, indexes)
950 Writes palette indexes for the horizontal line (left, y) to (right-1,
953 Returns the number of indexes written.
955 Always returns 0 for direct color images.
961 =item i_ppix(im, x, y, color)
964 Sets the pixel at (x,y) to I<color>.
966 Returns 0 if the pixel was drawn, or -1 if not.
968 Does no alpha blending, just copies the channels from the supplied
975 =item i_ppixf(im, C<x>, C<y>, C<fcolor>)
978 Sets the pixel at (C<x>,C<y>) to the floating point color C<fcolor>.
980 Returns 0 if the pixel was drawn, or -1 if not.
982 Does no alpha blending, just copies the channels from the supplied
989 =item i_psamp(im, left, right, y, samples, channels, channel_count)
991 Writes sample values from C<samples> to C<im> for the horizontal line
992 (left, y) to (right-1, y) inclusive for the channels specified by
993 C<channels>, an array of C<int> with C<channel_count> elements.
995 If C<channels> is C<NULL> then the first C<channels_count> channels
996 are written to for each pixel.
998 Returns the number of samples written, which should be (right - left)
999 * channel_count. If a channel not in the image is in channels, left
1000 is negative, left is outside the image or y is outside the image,
1001 returns -1 and pushes an error.
1005 From: File immacros.h
1007 =item i_psamp_bits(im, left, right, y, samples, channels, channel_count, bits)
1009 Writes integer samples scaled to C<bits> bits of precision from the
1010 C<unsigned int> array C<samples>.
1012 Expect this to be slow unless C<< bits == im->bits >>.
1014 Returns the number of samples copied, or -1 on error.
1016 Not all image types implement this method.
1018 Pushes errors, but does not call C<i_clear_error()>.
1024 =item i_psampf(im, left, right, y, samples, channels, channel_count)
1026 Writes floating point sample values from C<samples> to C<im> for the
1027 horizontal line (left, y) to (right-1, y) inclusive for the channels
1028 specified by C<channels>, an array of C<int> with C<channel_count>
1031 If C<channels> is C<NULL> then the first C<channels_count> channels
1032 are written to for each pixel.
1034 Returns the number of samples written, which should be (right - left)
1035 * channel_count. If a channel not in the image is in channels, left
1036 is negative, left is outside the image or y is outside the image,
1037 returns -1 and pushes an error.
1041 From: File immacros.h
1046 =head2 Error handling
1050 =item i_push_errorf(int code, char const *fmt, ...)
1052 i_push_errorf(errno, "Cannot open file %s: %d", filename, errno);
1054 A version of i_push_error() that does printf() like formatting.
1056 Does not support perl specific format codes.
1062 =item im_clear_error(ctx)
1063 X<im_clear_error API>X<i_clear_error API>
1065 im_clear_error(aIMCTX);
1068 Clears the error stack.
1070 Called by any Imager function before doing any other processing.
1072 Also callable as C<i_clear_error()>.
1078 =item im_push_error(ctx, code, message)
1079 X<im_push_error API>X<i_push_error API>
1081 i_push_error(0, "Yep, it's broken");
1082 i_push_error(errno, "Error writing");
1083 im_push_error(aIMCTX, 0, "Something is wrong");
1085 Called by an Imager function to push an error message onto the stack.
1087 No message is pushed if the stack is full (since this means someone
1088 forgot to call i_clear_error(), or that a function that doesn't do
1089 error handling is calling function that does.).
1095 =item im_push_errorf(ctx, code, char const *fmt, ...)
1097 im_push_errorf(aIMCTX, errno, "Cannot open file %s: %d", filename, errno);
1099 A version of im_push_error() that does printf() like formatting.
1101 Does not support perl specific format codes.
1107 =item im_push_errorvf(ctx, code, format, args)
1108 X<im_push_error_vf API>X<i_push_errorvf API>
1111 va_start(args, lastarg);
1112 im_push_errorvf(ctx, code, format, args);
1114 Intended for use by higher level functions, takes a varargs pointer
1115 and a format to produce the finally pushed error message.
1117 Does not support perl specific format codes.
1119 Also callable as C<i_push_errorvf(code, format, args)>
1132 =item i_get_file_background(im, &bg)
1135 Retrieve the file write background color tag from the image.
1137 If not present, C<bg> is set to black.
1139 Returns 1 if the C<i_background> tag was found and valid.
1145 =item i_get_file_backgroundf(im, &bg)
1148 Retrieve the file write background color tag from the image as a
1149 floating point color.
1151 Implemented in terms of i_get_file_background().
1153 If not present, C<bg> is set to black.
1155 Returns 1 if the C<i_background> tag was found and valid.
1161 =item im_get_image_file_limits(ctx, &width, &height, &bytes)
1162 X<im_get_image_file_limits API>X<i_get_image_file_limits>
1164 im_get_image_file_limits(aIMCTX, &width, &height, &bytes)
1165 i_get_image_file_limits(&width, &height, &bytes)
1167 Retrieves the file limits set by i_set_image_file_limits().
1173 i_img_dim *width, *height - the maximum width and height of the image.
1177 size_t *bytes - size in memory of the image in bytes.
1181 Also callable as C<i_get_image_file_limits(&width, &height, &bytes)>.
1187 =item im_int_check_image_file_limits(width, height, channels, sample_size)
1188 X<im_int_check_image_file_limits API>X<i_int_check_image_file_limits>
1190 im_int_check_image_file_limits(aIMCTX, width, height, channels, sizeof(i_sample_t))
1191 i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t))
1193 Checks the size of a file in memory against the configured image file
1196 This also range checks the values to those permitted by Imager and
1197 checks for overflows in calculating the size.
1199 Returns non-zero if the file is within limits.
1201 This function is intended to be called by image file read functions.
1203 Also callable as C<i_int_check_image_file_limits(width, height, channels, sizeof(i_sample_t)>.
1209 =item im_set_image_file_limits(ctx, width, height, bytes)
1210 X<im_set_image_file_limits API>X<i_set_image_file_limits API>
1212 im_set_image_file_limits(aIMCTX, 500, 500, 1000000);
1213 i_set_image_file_limits(500, 500, 1000000);
1215 Set limits on the sizes of images read by Imager.
1217 Setting a limit to 0 means that limit is ignored.
1219 Negative limits result in failure.
1227 i_img_dim width, height - maximum width and height.
1231 size_t bytes - maximum size in memory in bytes. A value of zero sets
1232 this limit to one gigabyte.
1236 Returns non-zero on success.
1238 Also callable as C<i_set_image_file_limits(width, height, bytes)>.
1251 =item i_new_fill_fount(C<xa>, C<ya>, C<xb>, C<yb>, C<type>, C<repeat>, C<combine>, C<super_sample>, C<ssample_param>, C<count>, C<segs>)
1254 fill = i_new_fill_fount(0, 0, 100, 100, i_ft_linear, i_ft_linear,
1255 i_fr_triangle, 0, i_fts_grid, 9, 1, segs);
1258 Creates a new general fill which fills with a fountain fill.
1262 From: File filters.im
1264 =item i_new_fill_hatch(C<fg>, C<bg>, C<combine>, C<hatch>, C<cust_hatch>, C<dx>, C<dy>)
1267 i_fill_t *fill = i_new_fill_hatch(&fg_color, &bg_color, combine, hatch, custom_hatch, dx, dy);
1269 Creates a new hatched fill with the C<fg> color used for the 1 bits in
1270 the hatch and C<bg> for the 0 bits. If C<combine> is non-zero alpha
1271 values will be combined.
1273 If C<cust_hatch> is non-NULL it should be a pointer to 8 bytes of the
1274 hash definition, with the high-bits to the left.
1276 If C<cust_hatch> is NULL then one of the standard hatches is used.
1278 (C<dx>, C<dy>) are an offset into the hatch which can be used to hatch
1279 adjoining areas out of alignment, or to align the origin of a hatch
1280 with the side of a filled area.
1286 =item i_new_fill_hatchf(C<fg>, C<bg>, C<combine>, C<hatch>, C<cust_hatch>, C<dx>, C<dy>)
1289 i_fill_t *fill = i_new_fill_hatchf(&fg_fcolor, &bg_fcolor, combine, hatch, custom_hatch, dx, dy);
1291 Creates a new hatched fill with the C<fg> color used for the 1 bits in
1292 the hatch and C<bg> for the 0 bits. If C<combine> is non-zero alpha
1293 values will be combined.
1295 If C<cust_hatch> is non-NULL it should be a pointer to 8 bytes of the
1296 hash definition, with the high-bits to the left.
1298 If C<cust_hatch> is NULL then one of the standard hatches is used.
1300 (C<dx>, C<dy>) are an offset into the hatch which can be used to hatch
1301 adjoining areas out of alignment, or to align the origin of a hatch
1302 with the side of a filled area.
1308 =item i_new_fill_image(C<im>, C<matrix>, C<xoff>, C<yoff>, C<combine>)
1311 i_fill_t *fill = i_new_fill_image(src_img, matrix, x_offset, y_offset, combine);
1313 Create an image based fill.
1315 matrix is an array of 9 doubles representing a transformation matrix.
1317 C<xoff> and C<yoff> are the offset into the image to start filling from.
1323 =item i_new_fill_solid(color, combine)
1326 i_fill_t *fill = i_new_fill_solid(&color, combine);
1328 Create a solid fill based on an 8-bit color.
1330 If combine is non-zero then alpha values will be combined.
1336 =item i_new_fill_solidf(color, combine)
1339 i_fill_t *fill = i_new_fill_solidf(&fcolor, combine);
1341 Create a solid fill based on a float color.
1343 If combine is non-zero then alpha values will be combined.
1349 =item i_fill_destroy(fill)
1351 i_fill_destroy(fill);
1353 Call to destroy any fill object.
1366 =item im_io_new_bufchain(ctx)
1367 X<im_io_new_bufchain API>X<i_io_new_bufchain API>
1369 Returns a new io_glue object that has the 'empty' source and but can
1370 be written to and read from later (like a pseudo file).
1372 Also callable as C<io_new_bufchain()>.
1376 From: File iolayer.c
1378 =item im_io_new_buffer(ctx, data, length)
1379 X<im_io_new_buffer API>X<io_new_buffer API>
1381 Returns a new io_glue object that has the source defined as reading
1382 from specified buffer. Note that the buffer is not copied.
1384 ctx - an Imager context object
1385 data - buffer to read from
1386 length - length of buffer
1388 Also callable as C<io_new_buffer(data, length>.
1392 From: File iolayer.c
1394 =item im_io_new_cb(ctx, p, read_cb, write_cb, seek_cb, close_cb, destroy_cb)
1395 X<im_io_new_cb API>X<io_new_cb API>
1397 Create a new I/O layer object that calls your supplied callbacks.
1399 In general the callbacks should behave like the corresponding POSIX
1406 C<read_cb>(p, buffer, length) should read up to C<length> bytes into
1407 C<buffer> and return the number of bytes read. At end of file, return
1408 0. On error, return -1.
1412 C<write_cb>(p, buffer, length) should write up to C<length> bytes from
1413 C<buffer> and return the number of bytes written. A return value <= 0
1414 will be treated as an error.
1418 C<seekcb>(p, offset, whence) should seek and return the new offset.
1422 C<close_cb>(p) should return 0 on success, -1 on failure.
1426 C<destroy_cb>(p) should release any memory specific to your callback
1431 Also callable as C<io_new_cb(p, readcb, writecb, seekcb, closecb,
1436 From: File iolayer.c
1438 =item im_io_new_fd(ctx, file)
1439 X<io_new_fd API>X<im_io_new_fd API>
1441 Returns a new io_glue object that has the source defined as reading
1442 from specified file descriptor. Note that the interface to receiving
1443 data from the io_glue callbacks hasn't been done yet.
1445 ctx - and Imager context object
1446 file - file descriptor to read/write from
1448 Also callable as C<io_new_fd(file)>.
1452 From: File iolayer.c
1454 =item i_io_close(io)
1456 Flush any pending output and perform the close action for the stream.
1458 Returns 0 on success.
1462 From: File iolayer.c
1464 =item i_io_flush(io)
1466 Flush any buffered output.
1468 Returns true on success,
1472 From: File iolayer.c
1476 A macro to read a single byte from a buffered I/O glue object.
1478 Returns EOF on failure, or a byte.
1482 From: File iolayer.c
1484 =item i_io_gets(ig, buffer, size, end_of_line)
1487 ssize_t len = i_io_gets(buffer, sizeof(buffer), '\n');
1489 Read up to C<size>-1 bytes from the stream C<ig> into C<buffer>.
1491 If the byte C<end_of_line> is seen then no further bytes will be read.
1493 Returns the number of bytes read.
1495 Always C<NUL> terminates the buffer.
1499 From: File iolayer.c
1501 =item i_io_peekc(ig)
1503 Read the next character from the stream without advancing the stream.
1505 On error or end of file, return EOF.
1507 For unbuffered streams a single character buffer will be setup.
1511 From: File iolayer.c
1513 =item i_io_peekn(ig, buffer, size)
1515 ssize_t count = i_io_peekn(ig, buffer, sizeof(buffer));
1517 Buffer at least C<size> (at most C<< ig->buf_size >> bytes of data
1518 from the stream and return C<size> bytes of it to the caller in
1521 This ignores the buffered state of the stream, and will always setup
1522 buffering if needed.
1524 If no C<type> parameter is provided to Imager::read() or
1525 Imager::read_multi(), Imager will call C<i_io_peekn()> when probing
1526 for the file format.
1528 Returns -1 on error, 0 if there is no data before EOF, or the number
1529 of bytes read into C<buffer>.
1533 From: File iolayer.c
1535 =item i_io_putc(ig, c)
1537 Write a single character to the stream.
1539 On success return c, on error returns EOF
1543 From: File iolayer.c
1545 =item i_io_read(io, buffer, size)
1547 Read up to C<size> bytes from the stream C<io> into C<buffer>.
1549 Returns the number of bytes read. Returns 0 on end of file. Returns
1554 From: File iolayer.c
1556 =item i_io_seek(io, offset, whence)
1558 Seek within the stream.
1560 Acts like perl's seek.
1564 From: File iolayer.c
1566 =item i_io_set_buffered(io, buffered)
1568 Set the buffering mode of the stream.
1570 If you switch buffering off on a stream with buffering on:
1576 any buffered output will be flushed.
1580 any existing buffered input will be consumed before reads become
1585 Returns true on success. This may fail if any buffered output cannot
1590 From: File iolayer.c
1592 =item i_io_write(io, buffer, size)
1594 ssize_t result = i_io_write(io, buffer, size)
1596 Write to the given I/O stream.
1598 Returns the number of bytes written.
1602 From: File iolayer.c
1604 =item io_slurp(ig, c)
1607 Takes the source that the io_glue is bound to and allocates space for
1608 a return buffer and returns the entire content in a single buffer.
1609 Note: This only works for io_glue objects created by
1610 io_new_bufchain(). It is useful for saving to scalars and such.
1613 c - pointer to a pointer to where data should be copied to
1616 size_t size = io_slurp(ig, &data);
1617 ... do something with the data ...
1620 io_slurp() will abort the program if the supplied I/O layer is not
1621 from io_new_bufchain().
1625 From: File iolayer.c
1627 =item io_glue_destroy(ig)
1628 X<io_glue_destroy API>
1630 io_glue_destroy(ig);
1632 Destroy an io_glue objects. Should clean up all related buffers.
1634 ig - io_glue object to destroy.
1638 From: File iolayer.c
1647 =item i_copy(source)
1650 Creates a new image that is a copy of the image C<source>.
1652 Tags are not copied, only the image data.
1660 =item i_copyto(C<dest>, C<src>, C<x1>, C<y1>, C<x2>, C<y2>, C<tx>, C<ty>)
1663 Copies image data from the area (C<x1>,C<y1>)-[C<x2>,C<y2>] in the
1664 source image to a rectangle the same size with it's top-left corner at
1665 (C<tx>,C<ty>) in the destination image.
1667 If C<x1> > C<x2> or C<y1> > C<y2> then the corresponding co-ordinates
1674 =item i_copyto_trans(C<im>, C<src>, C<x1>, C<y1>, C<x2>, C<y2>, C<tx>, C<ty>, C<trans>)
1677 (C<x1>,C<y1>) (C<x2>,C<y2>) specifies the region to copy (in the
1678 source coordinates) (C<tx>,C<ty>) specifies the upper left corner for
1679 the target image. pass NULL in C<trans> for non transparent i_colors.
1685 =item i_img_info(im, info)
1688 Return image information
1691 info - pointer to array to return data
1693 info is an array of 4 integers with the following values:
1698 info[3] - channel mask
1704 =item i_rubthru(C<im>, C<src>, C<tx>, C<ty>, C<src_minx>, C<src_miny>, C<src_maxx>, C<src_maxy>)
1707 Takes the sub image C<src>[C<src_minx>, C<src_maxx>)[C<src_miny>, C<src_maxy>)> and
1708 overlays it at (C<tx>,C<ty>) on the image object.
1710 The alpha channel of each pixel in C<src> is used to control how much
1711 the existing color in C<im> is replaced, if it is 255 then the color
1712 is completely replaced, if it is 0 then the original color is left
1717 From: File rubthru.im
1722 =head2 Image creation/destruction
1726 =item i_sametype(C<im>, C<xsize>, C<ysize>)
1729 i_img *img = i_sametype(src, width, height);
1731 Returns an image of the same type (sample size, channels, paletted/direct).
1733 For paletted images the palette is copied from the source.
1739 =item i_sametype_chans(C<im>, C<xsize>, C<ysize>, C<channels>)
1742 i_img *img = i_sametype_chans(src, width, height, channels);
1744 Returns an image of the same type (sample size).
1746 For paletted images the equivalent direct type is returned.
1752 =item im_img_16_new(ctx, x, y, ch)
1753 X<im_img_16_new API>X<i_img_16_new API>
1755 i_img *img = im_img_16_new(aIMCTX, width, height, channels);
1756 i_img *img = i_img_16_new(width, height, channels);
1758 Create a new 16-bit/sample image.
1760 Returns the image on success, or NULL on failure.
1762 Also callable as C<i_img_16_new(x, y, ch)>
1768 =item im_img_8_new(ctx, x, y, ch)
1769 X<im_img_8_new API>X<i_img_8_new API>
1771 i_img *img = im_img_8_new(aIMCTX, width, height, channels);
1772 i_img *img = i_img_8_new(width, height, channels);
1774 Creates a new image object I<x> pixels wide, and I<y> pixels high with
1781 =item im_img_double_new(ctx, x, y, ch)
1782 X<im_img_double_new API>X<i_img_double_new API>
1784 i_img *img = im_img_double_new(aIMCTX, width, height, channels);
1785 i_img *img = i_img_double_new(width, height, channels);
1787 Creates a new double per sample image.
1789 Also callable as C<i_img_double_new(width, height, channels)>.
1793 From: File imgdouble.c
1795 =item im_img_pal_new(ctx, C<x>, C<y>, C<channels>, C<maxpal>)
1796 X<im_img_pal_new API>X<i_img_pal_new API>
1798 i_img *img = im_img_pal_new(aIMCTX, width, height, channels, max_palette_size)
1799 i_img *img = i_img_pal_new(width, height, channels, max_palette_size)
1801 Creates a new paletted image of the supplied dimensions.
1803 C<maxpal> is the maximum palette size and should normally be 256.
1805 Returns a new image or NULL on failure.
1807 Also callable as C<i_img_pal_new(width, height, channels, max_palette_size)>.
1813 =item i_img_destroy(C<img>)
1817 Destroy an image object
1826 =head2 Image Implementation
1830 =item im_img_alloc(aIMCTX)
1831 X<im_img_alloc API>X<i_img_alloc API>
1833 i_img *im = im_img_alloc(aIMCTX);
1834 i_img *im = i_img_alloc();
1836 Allocates a new i_img structure.
1838 When implementing a new image type perform the following steps in your
1839 image object creation function:
1845 allocate the image with i_img_alloc().
1849 initialize any function pointers or other data as needed, you can
1850 overwrite the whole block if you need to.
1854 initialize Imager's internal data by calling i_img_init() on the image
1863 =item im_img_init(aIMCTX, image)
1864 X<im_img_init API>X<i_img_init API>
1866 im_img_init(aIMCTX, im);
1869 Imager internal initialization of images.
1871 See L</im_img_alloc(aIMCTX)> for more information.
1880 =head2 Image Information
1884 =item i_img_alpha_channel(im, &channel)
1887 int has_alpha = i_img_alpha_channel(im, &alpha_channel);
1889 Work out the alpha channel for an image.
1891 If the image has an alpha channel, sets C<*channel> to the alpha
1892 channel index and returns non-zero.
1894 If the image has no alpha channel, returns zero and C<*channel> is not
1897 C<channel> may be C<NULL>.
1903 =item i_img_color_channels(im)
1905 int color_channels = i_img_color_channels(im);
1907 Returns the number of color channels in the image. For now this is
1908 always 1 (for grayscale) or 3 (for RGB) but may be 0 in some special
1909 cases in a future release of Imager.
1915 =item i_img_color_model(im)
1917 i_color_model_t cm = i_img_color_model(im);
1919 Returns the color model for the image.
1921 A future version of Imager will allow for images with extra channels
1922 beyond gray/rgb and alpha.
1928 =item i_img_get_height(C<im>)
1930 i_img_dim height = i_img_get_height(im);
1932 Returns the height in pixels of the image.
1938 =item i_img_get_width(C<im>)
1940 i_img_dim width = i_img_get_width(im);
1942 Returns the width in pixels of the image.
1948 =item i_img_getchannels(C<im>)
1950 int channels = i_img_getchannels(img);
1952 Get the number of channels in C<im>.
1958 =item i_img_getmask(C<im>)
1960 int mask = i_img_getmask(img);
1962 Get the image channel mask for C<im>.
1968 =item i_img_has_alpha(C<im>)
1971 Return true if the image has an alpha channel.
1975 From: File immacros.h
1977 =item i_img_is_monochrome(img, &zero_is_white)
1980 Tests an image to check it meets our monochrome tests.
1982 The idea is that a file writer can use this to test where it should
1983 write the image in whatever bi-level format it uses, eg. C<pbm> for
1986 For performance of encoders we require monochrome images:
1996 have a palette of two colors, containing only C<(0,0,0)> and
1997 C<(255,255,255)> in either order.
2001 C<zero_is_white> is set to non-zero if the first palette entry is white.
2007 =item i_img_setmask(C<im>, C<ch_mask>)
2009 // only channel 0 writable
2010 i_img_setmask(img, 0x01);
2012 Set the image channel mask for C<im> to C<ch_mask>.
2014 The image channel mask gives some control over which channels can be
2015 written to in the image.
2024 =head2 Image quantization
2028 =item i_quant_makemap(C<quant>, C<imgs>, C<count>)
2031 Analyzes the C<count> images in C<imgs> according to the rules in
2032 C<quant> to build a color map (optimal or not depending on
2033 C<< quant->make_colors >>).
2039 =item i_quant_translate(C<quant>, C<img>)
2042 Quantize the image given the palette in C<quant>.
2044 On success returns a pointer to a memory block of C<< img->xsize *
2045 img->ysize >> C<i_palidx> entries.
2047 On failure returns NULL.
2049 You should call myfree() on the returned block when you're done with
2052 This function will fail if the supplied palette contains no colors.
2058 =item i_quant_transparent(C<quant>, C<data>, C<img>, C<trans_index>)
2061 Dither the alpha channel on C<img> into the palette indexes in
2062 C<data>. Pixels to be transparent are replaced with C<trans_pixel>.
2064 The method used depends on the tr_* members of C<quant>.
2077 =item i_lhead(file, line)
2079 This is an internal function called by the mm_log() macro.
2085 =item i_loog(level, format, ...)
2087 This is an internal function called by the mm_log() macro.
2105 Opaque type for Imager's mutex API.
2109 From: File imdatatypes.h
2114 =head2 Mutex functions
2120 i_mutex_t m = i_mutex_new();
2124 If a critical section cannot be created for whatever reason, Imager
2129 From: File mutexwin.c
2131 =item i_mutex_destroy(m)
2139 From: File mutexwin.c
2141 =item i_mutex_lock(m)
2145 Lock the mutex, waiting if another thread has the mutex locked.
2149 From: File mutexwin.c
2151 =item i_mutex_unlock(m)
2157 The behavior of releasing a mutex you don't hold is unspecified.
2161 From: File mutexwin.c
2166 =head2 Paletted images
2170 =item i_addcolors(im, colors, count)
2173 Adds colors to the image's palette.
2175 On success returns the index of the lowest color added.
2177 On failure returns -1.
2179 Always fails for direct color images.
2185 =item i_colorcount(im)
2188 Returns the number of colors in the image's palette.
2190 Returns -1 for direct images.
2196 =item i_findcolor(im, color, &entry)
2199 Searches the images palette for the given color.
2201 On success sets *I<entry> to the index of the color, and returns true.
2203 On failure returns false.
2205 Always fails on direct color images.
2211 =item i_getcolors(im, index, colors, count)
2214 Retrieves I<count> colors starting from I<index> in the image's
2217 On success stores the colors into I<colors> and returns true.
2219 On failure returns false.
2221 Always fails for direct color images.
2223 Fails if there are less than I<index>+I<count> colors in the image's
2230 =item i_maxcolors(im)
2233 Returns the maximum number of colors the palette can hold for the
2236 Returns -1 for direct color images.
2242 =item i_setcolors(im, index, colors, count)
2245 Sets I<count> colors starting from I<index> in the image's palette.
2247 On success returns true.
2249 On failure returns false.
2251 The image must have at least I<index>+I<count> colors in it's palette
2252 for this to succeed.
2254 Always fails on direct color images.
2267 =item i_tags_delbycode(tags, code)
2270 Delete any tags with the given code.
2272 Returns the number of tags deleted.
2278 =item i_tags_delbyname(tags, name)
2281 Delete any tags with the given name.
2283 Returns the number of tags deleted.
2289 =item i_tags_delete(tags, index)
2292 Delete a tag by index.
2294 Returns true on success.
2300 =item i_tags_destroy(tags)
2303 Destroys the given tags structure. Called by i_img_destroy().
2309 =item i_tags_find(tags, name, start, &entry)
2312 Searches for a tag of the given I<name> starting from index I<start>.
2314 On success returns true and sets *I<entry>.
2316 On failure returns false.
2322 =item i_tags_findn(tags, code, start, &entry)
2325 Searches for a tag of the given I<code> starting from index I<start>.
2327 On success returns true and sets *I<entry>.
2329 On failure returns false.
2335 =item i_tags_get_color(tags, name, code, &value)
2338 Retrieve a tag specified by name or code as color.
2340 On success sets the i_color *I<value> to the color and returns true.
2342 On failure returns false.
2348 =item i_tags_get_float(tags, name, code, value)
2351 Retrieves a tag as a floating point value.
2353 If the tag has a string value then that is parsed as a floating point
2354 number, otherwise the integer value of the tag is used.
2356 On success sets *I<value> and returns true.
2358 On failure returns false.
2364 =item i_tags_get_int(tags, name, code, &value)
2367 Retrieve a tag specified by name or code as an integer.
2369 On success sets the int *I<value> to the integer and returns true.
2371 On failure returns false.
2377 =item i_tags_get_string(tags, name, code, value, value_size)
2380 Retrieves a tag by name or code as a string.
2382 On success copies the string to value for a max of value_size and
2385 On failure returns false.
2387 value_size must be at least large enough for a string representation
2390 The copied value is always C<NUL> terminated.
2396 =item i_tags_new(i_img_tags *tags)
2399 Initialize a tags structure. Should not be used if the tags structure
2400 has been previously used.
2402 This should be called tags member of an i_img object on creation (in
2403 i_img_*_new() functions).
2405 To destroy the contents use i_tags_destroy()
2411 =item i_tags_set(tags, name, data, size)
2413 i_tags_set(&img->tags, "i_comment", -1);
2415 Sets the given tag to the string I<data>
2417 If size is -1 then the strlen(I<data>) bytes are stored.
2419 Even on failure, if an existing tag I<name> exists, it will be
2426 =item i_tags_set_color(tags, name, code, &value)
2429 Stores the given color as a tag with the given name and code.
2435 =item i_tags_set_float(tags, name, code, value)
2438 Equivalent to i_tags_set_float2(tags, name, code, value, 30).
2444 =item i_tags_set_float2(tags, name, code, value, places)
2447 Sets the tag with the given name and code to the given floating point
2450 Since tags are strings or ints, we convert the value to a string before
2451 storage at the precision specified by C<places>.
2457 =item i_tags_setn(C<tags>, C<name>, C<idata>)
2459 i_tags_setn(&img->tags, "i_xres", 204);
2460 i_tags_setn(&img->tags, "i_yres", 196);
2462 Sets the given tag to the integer C<idata>
2464 Even on failure, if an existing tag C<name> exists, it will be
2474 =head2 Uncategorized functions
2478 =item i_utf8_advance(char **p, size_t *len)
2480 Retrieve a C<UTF-8> character from the stream.
2482 Modifies *p and *len to indicate the consumed characters.
2484 This doesn't support the extended C<UTF-8> encoding used by later
2485 versions of Perl. Since this is typically used to implement text
2486 output by font drivers, the strings supplied shouldn't have such out
2487 of range characters.
2489 This doesn't check that the C<UTF-8> character is using the shortest
2490 possible representation.
2492 Returns ~0UL on failure.
2498 =item im_context_refdec(ctx, where)
2499 X<im_context_refdec API>
2500 =section Context objects
2502 im_context_refdec(aIMCTX, "a description");
2504 Remove a reference to the context, releasing it if all references have
2509 From: File context.c
2511 =item im_context_refinc(ctx, where)
2512 X<im_context_refinc API>
2513 =section Context objects
2515 im_context_refinc(aIMCTX, "a description");
2517 Add a new reference to the context.
2521 From: File context.c
2523 =item im_context_slot_get(ctx, slot)
2525 Retrieve the value previously stored in the given slot of the context
2530 From: File context.c
2532 =item im_context_slot_new(destructor)
2534 Allocate a new context-local-storage slot.
2536 C<desctructor> will be called when the context is destroyed if the
2537 corresponding slot is non-NULL.
2541 From: File context.c
2543 =item im_context_slot_set(slot, value)
2545 Set the value of a slot.
2547 Returns true on success.
2549 Aborts if the slot supplied is invalid.
2551 If reallocation of slot storage fails, returns false.
2555 From: File context.c
2557 =item im_errors(ctx)
2559 i_errmsg *errors = im_errors(aIMCTX);
2560 i_errmsg *errors = i_errors();
2562 Returns a pointer to the first element of an array of error messages,
2563 terminated by a NULL pointer. The highest level message is first.
2565 Also callable as C<i_errors()>.
2571 =item im_get_context()
2573 Retrieve the context object for the current thread.
2575 Inside Imager itself this is just a function pointer, which the
2576 F<Imager.xs> BOOT handler initializes for use within perl. If you're
2577 taking the Imager code and embedding it elsewhere you need to
2578 initialize the C<im_get_context> pointer at some point.
2591 The following API functions are undocumented so far, hopefully this
2615 Tony Cook <tonyc@cpan.org>
2619 Imager, Imager::API, Imager::ExtUtils, Imager::Inline