Table of Contents

Property EdgeMode

Namespace
SharpVectors.Dom.Svg
Assembly
SharpVectors.Model.dll

EdgeMode

Determines how to extend the input image as necessary with color values so that the matrix operations can be applied when the kernel is positioned at or near the edge of the input image.

public ISvgAnimatedEnumeration EdgeMode { get; }

Property Value

ISvgAnimatedEnumeration

edgeMode = "duplicate | wrap | none"

An enumeration of the type SvgFilterEdgeMode. The default value is Duplicate.

Remarks

"duplicate" indicates that the input image is extended along each of its borders as necessary by duplicating the color values at the given edge of the input image.

"wrap" indicates that the input image is extended by taking the color values from the opposite edge of the image.

"none" indicates that the input image is extended with pixel values of zero for R, G, B and A.

If attribute 'edgeMode' is not specified, then the effect is as if a value of duplicate were specified.