svg:feConvolveMatrixType

Complex Type Information

Model

Children: svg:animate, svg:set

Attributes

QName Type Fixed Default Use Inheritable Annotation
bias double optional
divisor double optional
edgeMode restriction of string duplicate optional
height svg:LengthType optional
in string optional
kernelMatrix string required
kernelUnitLength string optional
order string required
preserveAlpha boolean optional
result string optional
targetX integer optional
targetY integer optional
width svg:LengthType optional
x svg:CoordinateType optional
y svg:CoordinateType optional

Used By

Source

<complexType name="feConvolveMatrixType">
  <choice minOccurs="0" maxOccurs="unbounded">
    <element ref="svg:animate"/>
    <element ref="svg:set"/>
  </choice>
  <attributeGroup ref="svg:filter_primitive_attributes_with_in"/>
  <attribute name="order" type="string" use="required"/>
  <attribute name="kernelMatrix" type="string" use="required"/>
  <attribute name="divisor" type="double" use="optional"/>
  <attribute name="bias" type="double" use="optional"/>
  <attribute name="targetX" type="integer" use="optional"/>
  <attribute name="targetY" type="integer" use="optional"/>
  <attribute name="edgeMode" default="duplicate">
    <simpleType>
      <restriction base="string">
        <enumeration value="duplicate"/>
        <enumeration value="wrap"/>
        <enumeration value="none"/>
      </restriction>
    </simpleType>
  </attribute>
  <attribute name="kernelUnitLength" type="string" use="optional"/>
  <attribute name="preserveAlpha" type="boolean" use="optional"/>
</complexType>