SVGBuilderExtensions.AddFeColorMatrix
Contents
[
Hide
]AddFeColorMatrix(this TBuilder, ColorMatrixOperation, double[], OneOf<string, FilterInput>, string, OneOf<double, (double, LengthType)>, OneOf<double, (double, LengthType)>, OneOf<double, (double, LengthType)>, OneOf<double, (double, LengthType)>, OneOf<Color, Paint, string>, OneOf<Color, Paint, string>, string, Action<SVGFEColorMatrixElementBuilder>) 
Adds an ‘feColorMatrix’ element to the SVG builder, specifying the type of color matrix operation and various other properties for the filter effect.
public static TBuilder AddFeColorMatrix<TBuilder>(this TBuilder builder, ColorMatrixOperation type, 
    double[] values = null, OneOf<string, FilterInput> @in = null, string result = null, 
    OneOf<double, (double, LengthType)> x = null, OneOf<double, (double, LengthType)> y = null, 
    OneOf<double, (double, LengthType)> width = null, 
    OneOf<double, (double, LengthType)> height = null, OneOf<Color, Paint, string> fill = null, 
    OneOf<Color, Paint, string> stroke = null, string id = null, 
    Action<SVGFEColorMatrixElementBuilder> extend = null)
    where TBuilder : ISVGElementBuilder, IFilterPrimitiveElementBuilder
| Parameter | Description | 
|---|---|
| TBuilder | The type of the SVG element builder, facilitating fluent API usage. | 
| builder | The SVG builder instance to which the ‘feColorMatrix’ element will be added. | 
| type | The type of color matrix operation to be applied. | 
| values | The values for the color matrix operation. Optional parameter. | 
| in | The input for the color matrix effect. Can be a string or a FilterInput. Optional parameter. | 
| result | The result identifier for this filter primitive. Optional parameter. | 
| x | The x-coordinate of the filter primitive subregion. Can be a double or a ValueTuple with LengthType. Optional parameter. | 
| y | The y-coordinate of the filter primitive subregion. Can be a double or a ValueTuple with LengthType. Optional parameter. | 
| width | The width of the filter primitive subregion. Can be a double or a ValueTuple with LengthType. Optional parameter. | 
| height | The height of the filter primitive subregion. Can be a double or a ValueTuple with LengthType. Optional parameter. | 
| fill | The fill color, paint or paint server id for the element. Optional parameter. | 
| stroke | The stroke color, paint or paint server id for the element. Optional parameter. | 
| id | The unique identifier for the filter primitive element. Optional parameter. | 
| extend | An optional action to further configure the SVGFEColorMatrixElementBuilder. | 
Return Value
The builder instance, allowing for method chaining.
See Also
- enum ColorMatrixOperation
- class OneOf<T1,T2>
- enum FilterInput
- enum LengthType
- class OneOf<T1,T2,T3>
- enum Paint
- class SVGFEColorMatrixElementBuilder
- interface ISVGElementBuilder
- interface IFilterPrimitiveElementBuilder
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
AddFeColorMatrix(this TBuilder, Action<SVGFEColorMatrixElementBuilder>) 
Adds an ‘feColorMatrix’ element configuration to the builder. This element applies a matrix transformation to the color and alpha values of every pixel.
public static TBuilder AddFeColorMatrix<TBuilder>(this TBuilder builder, 
    Action<SVGFEColorMatrixElementBuilder> configure)
    where TBuilder : ISVGElementBuilder, IFilterPrimitiveElementBuilder
| Parameter | Description | 
|---|---|
| TBuilder | The type of the SVG element builder. | 
| builder | The builder instance. | 
| configure | The configuration action for the ‘feColorMatrix’ element. | 
Return Value
The builder instance for chaining.
See Also
- class SVGFEColorMatrixElementBuilder
- interface ISVGElementBuilder
- interface IFilterPrimitiveElementBuilder
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG