Use SVG Editor (Basic)

Enter your data below to use the SVG Editor (Basic)

📌 Try these examples:
RESULT

Last updated

SVG Filters Overview

SVG filters apply graphical effects to SVG elements and images using a pipeline of filter primitives. Each primitive takes one or more inputs, processes them, and produces an output that can be fed into the next primitive. Common effects include blur, drop shadow, color manipulation, displacement, and compositing.

Common Filter Primitives

PrimitiveEffect
feGaussianBlurGaussian blur
feDropShadowDrop shadow (shorthand)
feColorMatrixColor transformation matrix
feCompositeCombine two images
feBlendBlend two images (like CSS blend modes)
feTurbulenceNoise/turbulence texture
feDisplacementMapDistort image using another image
feMorphologyErode or dilate shapes
feConvolveMatrixConvolution (sharpen, emboss)

Drop Shadow Filter

SVG
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="4" dy="4" stdDeviation="3"
                    flood-color="rgba(0,0,0,0.4)"/>
    </filter>

    <filter id="blur">
      <feGaussianBlur stdDeviation="5"/>
    </filter>

    <filter id="grayscale">
      <feColorMatrix type="saturate" values="0"/>
    </filter>
  </defs>

  <rect x="20" y="20" width="80" height="80"
        fill="#3498DB" filter="url(#shadow)"/>
  <circle cx="150" cy="60" r="40"
          fill="#E74C3C" filter="url(#blur)"/>
</svg>

Frequently Asked Questions

Simply enter your data, click the process button, and get instant results. All processing happens in your browser for maximum privacy and security.