diff options
author | scuri <scuri> | 2010-01-07 19:12:08 +0000 |
---|---|---|
committer | scuri <scuri> | 2010-01-07 19:12:08 +0000 |
commit | a091243647ef5905e214b98fb42c5c3e334d2b64 (patch) | |
tree | 9df5ce8f92806ebb542a883aeccdb5683e3a4e1b /include/im_process_pon.h | |
parent | f7cb3c864a65132c672da90a81627e49c98a1ca9 (diff) |
Included alpha support in all geometric and size operations.
Diffstat (limited to 'include/im_process_pon.h')
-rw-r--r-- | include/im_process_pon.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/im_process_pon.h b/include/im_process_pon.h index 0611cc6..2420360 100644 --- a/include/im_process_pon.h +++ b/include/im_process_pon.h @@ -268,18 +268,18 @@ void imProcessSplitHSI(const imImage* src_image, imImage* h_image, imImage* s_im * \ingroup colorproc */ void imProcessMergeHSI(const imImage* h_image, const imImage* s_image, const imImage* i_image, imImage* dst_image); -/** Split a multicomponent image into separate components.\n +/** Split a multicomponent image into separate components, including alpha.\n * Destiny images must be IM_GRAY. Size and data types must be all the same.\n - * The number of destiny images must match the depth of the source image. + * The number of destiny images must match the depth of the source image, including alpha. * * \verbatim im.ProcessSplitComponents(src_image: imImage, dst_image_list: table of imImage) [in Lua 5] \endverbatim * \verbatim im.ProcessSplitComponentsNew(src_image: imImage) -> dst_image_list: table of imImage [in Lua 5] \endverbatim * \ingroup colorproc */ void imProcessSplitComponents(const imImage* src_image, imImage** dst_image_list); -/** Merges separate components into a multicomponent image.\n +/** Merges separate components into a multicomponent image, including alpha.\n * Source images must be IM_GRAY. Size and data types must be all the same.\n - * The number of source images must match the depth of the destiny image. + * The number of source images must match the depth of the destiny image, including alpha. * * \verbatim im.ProcessMergeComponents(src_image_list: table of imImage, dst_image: imImage) [in Lua 5] \endverbatim * \verbatim im.ProcessMergeComponentsNew(src_image_list: table of imImage) -> dst_image: imImage [in Lua 5] \endverbatim |