Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVG: color of the shadow

I want to write a simple rectangle with a red shadow in SVG. I have a simple filter:

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="1012" height="400">
  <title>svg arrow with dropshadow</title>
  <desc>An svg example of an arrow shape with a dropshadow filter applied. The dropshadow filter effect uses feGaussianBlur, feOffset and feMerge.</desc>
  <defs>
    <filter id="dropshadow" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
     <feComponentTransfer in="SourceAlpha">
         <feFuncR type="discrete" tableValues="1"/>
         <feFuncG type="discrete" tableValues="0"/>
         <feFuncB type="discrete" tableValues="0"/>
     </feComponentTransfer>
     <feGaussianBlur stdDeviation="2"/>
     <feOffset dx="0" dy="0" result="shadow"/>
     <feComposite in="SourceGraphic" in2="shadow" operator="over"/>
   </filter>
  </defs>
  <rect rx="2" ry="2" fill="rgb(255,255,255)" x="5.25" y="5.25" width="141" height="50" fill-opacity="0.85" filter="url(#dropshadow)">
</svg>

Why in this example shadow color is not red? Where is my bad?

like image 925
Oleg Ignatov Avatar asked Nov 01 '11 10:11

Oleg Ignatov


2 Answers

For those looking for a general solution, this worked for me inside a element:

<feGaussianBlur in="SourceAlpha" stdDeviation="1.7" result="blur"/>
<feOffset in="blur" dx="3" dy="3" result="offsetBlur"/>
<feFlood flood-color="#3D4574" flood-opacity="0.5" result="offsetColor"/>
<feComposite in="offsetColor" in2="offsetBlur" operator="in" result="offsetBlur"/>
like image 82
Joe W Avatar answered Oct 16 '22 18:10

Joe W


  1. You have provided invalid SVG - you need to close your <rect> element.

  2. Your example (fixed) shows a red shadow for me in Chrome. Here's what this URL looks like for me with Chrome v15:

    A light pink box with red border and shaodw

What OS/browser/version are you seeing different results with?

Edit: In Firefox v7 I see all greyscale, and in Safari v5 I don't see the shadow effect at all. Your answer, most likely then, is simply that you're testing in a browser/version with incomplete support of the SVG filter specification.

like image 38
Phrogz Avatar answered Oct 16 '22 17:10

Phrogz