2 Imager "functions" implemented as macros
4 I suppose these could go in imdatatypes, but they aren't types.
6 #ifndef IMAGER_IMMACROS_H_
7 #define IMAGER_IMMACROS_H_
10 =item i_img_has_alpha(C<im>)
12 =category Image Information
14 Return true if the image has an alpha channel.
19 #define i_img_has_alpha(im) ((im)->channels == 2 || (im)->channels == 4)
22 =item i_img_color_channels(C<im>)
24 =category Image Information
26 The number of channels holding color information.
31 #define i_img_color_channels(im) (i_img_has_alpha(im) ? (im)->channels - 1 : (im)->channels)
34 =item i_psamp(im, left, right, y, samples, channels, channel_count)
37 Writes sample values from C<samples> to C<im> for the horizontal line
38 (left, y) to (right-1, y) inclusive for the channels specified by
39 C<channels>, an array of C<int> with C<channel_count> elements.
41 If C<channels> is C<NULL> then the first C<channels_count> channels
42 are written to for each pixel.
44 Returns the number of samples written, which should be (right - left)
45 * channel_count. If a channel not in the image is in channels, left
46 is negative, left is outside the image or y is outside the image,
47 returns -1 and pushes an error.
52 #define i_psamp(im, l, r, y, samps, chans, count) \
53 (((im)->i_f_psamp)((im), (l), (r), (y), (samps), (chans), (count)))
56 =item i_psampf(im, left, right, y, samples, channels, channel_count)
59 Writes floating point sample values from C<samples> to C<im> for the
60 horizontal line (left, y) to (right-1, y) inclusive for the channels
61 specified by C<channels>, an array of C<int> with C<channel_count>
64 If C<channels> is C<NULL> then the first C<channels_count> channels
65 are written to for each pixel.
67 Returns the number of samples written, which should be (right - left)
68 * channel_count. If a channel not in the image is in channels, left
69 is negative, left is outside the image or y is outside the image,
70 returns -1 and pushes an error.
75 #define i_psampf(im, l, r, y, samps, chans, count) \
76 (((im)->i_f_psampf)((im), (l), (r), (y), (samps), (chans), (count)))