2012-11-03 71 views
0

我試圖將高斯模糊應用於Firefox中的png圖像。對於WebKit瀏覽器,我使用CSS3篩選器屬性。在CSS中,我使用了2像素的模糊效果,但是如何使用「stdDeviation」在SVG中創建相同的效果? 謝謝!如何在SVG中使用「stdDeviation」創建高斯模糊效果?

+0

很相似http://stackoverflow.com/questions/6088409/svg-drop-shadow-using-css3 –

回答

1

只需使用filter屬性將feGaussianBlur過濾器應用於SVG <image>元素即可。

<defs> 
<filter id="Gaussian_Blur"> 
<feGaussianBlur in="SourceGraphic" stdDeviation="5"/> 
</filter> 
</defs>