SVG <feMerge> Filter

You are Here:

What is <feMerge> Filter?

The <feMerge> SVG element allows filter effects to be applied concurrently instead of sequentially.

 

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> svg rect{ stroke: red; fill: green; } </style> </head> <body> <svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"> <filter id="point" x="-40" y="-20" width="100" height="200"> <feOffset in="SourceGraphic" dx="60" dy="60" /> <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur2" /> <feMerge> <feMergeNode in="blur2" /> <feMergeNode in="SourceGraphic" /> </feMerge> </filter> <rect x="5" y="5" width="100" height="100" filter="url(#point)" /> </svg>  </body> </html>

Reminder

Hi Developers, we almost covered 91% of SVG Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in SVG.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author