Donner
Embeddable browser-grade SVG2 engine
Loading...
Searching...
No Matches
"<feComponentTransfer>"

Defines a filter primitive that applies per-channel transfer functions (lookup tables) to modify the RGBA components of the input image.

Child elements "<feFuncR>", "<feFuncG>", "<feFuncB>", "<feFuncA>" define the transfer function for each channel.

Example usage:

<filter id="brighten">
<feComponentTransfer>
<feFuncR type="linear" slope="1.5" />
<feFuncG type="linear" slope="1.5" />
<feFuncB type="linear" slope="1.5" />
</feComponentTransfer>
</filter>