PictureEffectsRaw Xojo Plugin

ImageChannelMixerRaw.CombineChannelsCMYKA Method (console safe)

Combines channels into RawBitmap with CMYK color space and alpha channel.

CombineChannelsCMYKA(
   cyan as RawBitmap,
   magenta as RawBitmap,
   yellow as RawBitmap,
   key as RawBitmap,
   alpha as RawBitmap) as RawBitmap

Parameters

cyan
Channel to use as Cyan channel in the combined image.
magenta
Channel to use as Magenta channel in the combined image.
yellow
Channel to use as Yellow channel in the combined image.
key
Channel to use as Key channel in the combined image.
alpha
Channel to use as Alpha channel in the combined image.

Returns

RawBitmap
The combined channels as RawBitmap with CMYK color space and alpha channel.

Remarks

Channels may be skipped by passing in nil. But at least one channel must be passed in.

If ErrorCode will get Parameter error if all the channel parameters are nil or if passed in channels did not match in size or depth.

See Also

ImageChannelMixerRaw Class