Vachmi

The <feMerge> filter element allows filter effects to be applied concurrently instead of sequentially. This is achieved by other filters storing their output via the result attribute and then accessing it in a <feMergeNode> child.

Attributes

Attribute
Description
None
No specific attributes are there for this filter

Here is the SVG code to draw this filter.

Image Shadow with feMerge filter
<svg id='triangleshadow' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50'>
 <filter id="merge-Ex1">
  <feGaussianBlur in="SourceGraphic" stdDeviation="1" result="blur"/>
  <feOffset in="blur" dx="2" dy="2" result="offsetBlur"/>
  <feMerge>
   <feMergeNode in="offsetBlur"></feMergeNode>
   <feMergeNode in="SourceGraphic"></feMergeNode>
  </feMerge>
 </filter>
 <path d="M 10 10 L 40 10 L 25 40 Z" fill="black" filter="url(#merge-Ex1)"/>
</svg>