CompositeOperator Enum

CompositeOperator enumeration

Specifies the type of compositing operation to be applied in SVG compositing operations.

public enum CompositeOperator

Values

NameValueDescription
Over0Places the source graphic over the destination graphic.
In1Displays the source graphic where it overlaps the destination graphic.
Out2Displays the source graphic where it does not overlap the destination.
Atop3Displays the source graphic atop the destination graphic.
Xor4Displays the source graphic where it does not overlap the destination and vice versa.
Arithmetic5Allows for a custom arithmetic compositing operation.

Remarks

Compositing operations in SVG determine how two graphic elements are combined into a single image. Each operator defines a distinct method of blending or combining these elements.

See Also