ComponentTransferType Enum

ComponentTransferType enumeration

Specifies the type of component transfer function to be applied in the FeComponentTransfer filter primitive of an SVG.

public enum ComponentTransferType

Values

NameValueDescription
Identity0Represents no change in the input graphic. This is the default type.
Table1Uses a lookup table to define the function within the filter.
Discrete2Uses a set of discrete values to define the function in the filter.
Linear3Defines a linear transformation of the component within the filter.
Gamma4Defines a gamma correction transformation in the filter.

Remarks

The FeComponentTransfer filter primitive allows for individual manipulation of color components (RGB and alpha) of graphics elements using different types of transfer functions. Each type defines a distinct method of computation for color component transformation within the filter.

See Also