/*
=item i_img_destroy(img)
-
+=order 90
=category Image creation/destruction
=synopsis i_img_destroy(img)
/*
=item i_img_setmask(im, ch_mask)
-
+=category Image Information
=synopsis // only channel 0 writeable
=synopsis i_img_setmask(img, 0x01);
Set the image channel mask for I<im> to I<ch_mask>.
+The image channel mask gives some control over which channels can be
+written to in the image.
+
=cut
*/
void
/*
=item i_img_getmask(im)
-
-=synopsis mask = i_img_getmask(img);
+=category Image Information
+=synopsis int mask = i_img_getmask(img);
Get the image channel mask for I<im>.
/*
=item i_img_getchannels(im)
-
-=synopsis channels = i_img_getchannels(img);
+=category Image Information
+=synopsis int channels = i_img_getchannels(img);
Get the number of channels in I<im>.
/*
=item i_img_get_width(im)
-
-=synopsis width = i_img_get_width(im);
+=category Image Information
+=synopsis i_img_dim width = i_img_get_width(im);
Returns the width in pixels of the image.
/*
=item i_img_get_height(im)
-
-=synopsis height = i_img_get_height(im);
+=category Image Information
+=synopsis i_img_dim height = i_img_get_height(im);
Returns the height in pixels of the image.