ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Processing Namespace / ImGearRasterProcessing Class / RemoveChannel Method
Page to remove channel.
Position of the channel to be removed.




RemoveChannel Method
Removes the specified channel from the page's DIB and shifts remaining channels without transforming pixel data.
Syntax
'Declaration
 
Public Shared Sub RemoveChannel( _
   ByVal page As ImGearRasterPage, _
   ByVal channelNumber As Integer _
) 
 
'Usage
 
Dim page As ImGearRasterPage
Dim channelNumber As Integer
 
ImGearRasterProcessing.RemoveChannel(page, channelNumber)

Parameters

page
Page to remove channel.
channelNumber
Position of the channel to be removed.
Remarks
channelNumber can be within the [0..ChannelCount-1] range.

Color Space is changed as follows:

  • If page has more than one Extra channel, color space is unchanged.
  • If page has one Extra channel, ExtraMask is cleared.
  • If page has Alpha channel and no Extra channels, AlphaMask and PremultAlphaMask are cleared.
  • If page has only color channels, color space is changed to Unknown, and all remaining channels are considered Extra channels.
Example
See Also