Copies a channel to a new page.
Syntax
Parameters
- page
- Page from which the channel is obtained.
- channelNumber
- Channel number.
Return Value
ImageGear.Core.ImGearRasterPage class containing a copy of the channel.
Example
// Create a new image by copying the third channel of an existing image.
ImGearRasterPage igRasterPageNew = ImGearRasterProcessing.CreateChannelCopy(
igRasterPage, 2);
' Create a new image by copying the third channel of an existing image.
Dim igRasterPageNew As ImGearRasterPage = ImGearRasterProcessing.CreateChannelCopy(igRasterPage, 2)
See Also