Howdy, i'm using the following filter on a text element to provide a
simple glow. It seems that the glow is being clipped by the bounding
box of the text. I've tested the same svg using the adobe renderer an
it works like a charm. Is this a known bug or could I be doing
something wrong?
<filter id="Glow"
filterUnits="objectBoundingBox"
x="-50%" y="-50%"
width="200%"
height="200%">
<feMorphology in="SourceAlpha" result="morphedAlpha" radius="3"
operator="dilate"/>
<feGaussianBlur in="morphedAlpha" result="blurredAlpha"
stdDeviation="5"/>
<feFlood result="flooded"
style="flood-color:rgb(255,255,255);flood-opacity:1"/>
<feComposite operator="in" in="flooded" in2="blurredAlpha"
result="coloredShadow"/>
<feComposite in="SourceGraphic" in2="coloredShadow" operator="over"/>
</filter>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]