Enum ChannelSelector

Enum ChannelSelector

Namespace: Aspose.Svg.Builder
Assembly: Aspose.SVG.dll (25.5.0)

Specifies the channel selectors for use in SVG filter operations.

[ComVisible(true)]
public enum ChannelSelector

Fields

A = 3

Selects the Alpha (transparency) channel of the image.

The ‘A’ selector targets the alpha channel, which represents the transparency level of the image, allowing for manipulation of opacity and transparency effects.

B = 2

Selects the Blue channel of the image.

The ‘B’ selector targets the blue component of the color in an image, enabling operations that specifically affect the blue channel.

G = 1

Selects the Green channel of the image.

The ‘G’ selector targets the green component of the color in an image, enabling operations that specifically affect the green channel.

R = 0

Selects the Red channel of the image.

The ‘R’ selector targets the red component of the color in an image, enabling operations that specifically affect the red channel.

Remarks

Channel selectors are used in various SVG filter primitives to target specific color channels (Red, Green, Blue) or the alpha channel of an image. This allows for precise manipulation of these channels during filter processing.

 English