edgeMode property
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.
This property is read-only.
Syntax
HRESULT get_edgeMode(
[out] SVGAnimatedEnumeration **enumValue
);
Property values
Type: SVGAnimatedEnumeration
One of the following three values:
Value | Condition |
---|---|
duplicate 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 wrap | Indicates that the input image is extended by taking the color values from the opposite edge of the image:
|
none none | Indicates that the input image is extended with pixel values of zero for R, G, B and A. |
Standards information
- Scalable Vector Graphics: Filter Effects, Section 15.25.12
Remarks
One of three values that 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.
If attribute ISVGFEConvolveMatrixElement::edgeMode is not specified, then the effect is as if a value of duplicate
were specified.