SVGBuilderExtensions.AddFeComposite
Contents
[
Hide
]AddFeComposite<TBuilder>(this TBuilder, CompositeOperator?, double?, double?, double?, double?, OneOf<string, FilterInput>, 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<SVGFECompositeElementBuilder>)
Adds an ‘feComposite’ element to the SVG builder, specifying the composite operation and various other properties for combining input images.
public static TBuilder AddFeComposite<TBuilder>(this TBuilder builder,
CompositeOperator? compositeOperator, double? k1, double? k2, double? k3, double? k4,
OneOf<string, FilterInput> @in = null, OneOf<string, FilterInput> in2 = 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<SVGFECompositeElementBuilder> 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 ‘feComposite’ element will be added. |
compositeOperator | The composite operator to be used. Optional parameter. |
k1 | The first numeric value for the composite operation. Optional parameter. |
k2 | The second numeric value for the composite operation. Optional parameter. |
k3 | The third numeric value for the composite operation. Optional parameter. |
k4 | The fourth numeric value for the composite operation. Optional parameter. |
in | The first input for the composite effect. Can be a string or a FilterInput. Optional parameter. |
in2 | The second input for the composite 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 SVGFECompositeElementBuilder. |
Return Value
The builder instance, allowing for method chaining.
See Also
- enum CompositeOperator
- class OneOf<T1,T2>
- enum FilterInput
- enum LengthType
- class OneOf<T1,T2,T3>
- enum Paint
- class SVGFECompositeElementBuilder
- interface ISVGElementBuilder
- interface IFilterPrimitiveElementBuilder
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG
AddFeComposite<TBuilder>(this TBuilder, Action<SVGFECompositeElementBuilder>)
Adds an ‘feComposite’ element configuration to the builder. This element performs a bitwise combination of two input graphics.
public static TBuilder AddFeComposite<TBuilder>(this TBuilder builder,
Action<SVGFECompositeElementBuilder> 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 ‘feComposite’ element. |
Return Value
The builder instance for chaining.
See Also
- class SVGFECompositeElementBuilder
- interface ISVGElementBuilder
- interface IFilterPrimitiveElementBuilder
- class SVGBuilderExtensions
- namespace Aspose.Svg.Builder
- assembly Aspose.SVG