我有一个带有正在剪切的阴影的 SVG 刻度图标。我在这里看到的通常的过滤器偏移方法没有帮助。有什么建议么?
<svg version="1.2" baseProfile="tiny" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px" width="73.516px" height="55.507px" viewBox="0 0 73.516 55.507" xml:space="preserve">
<filter id="dropShadow" x="-20%" y="-20%" width="200%" height="200%">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" />
<feOffset dx="0" dy="0" />
<feMerge>
<feMergeNode />
<feMergeNode in="SourceGraphic" />
</feMerge>
</filter>
<polygon fill="#F2F2F2" points="61.769,0 29.784,31.987 11.765,13.96 0,25.69 18.034,43.735 18.011,43.761 29.748,55.507
73.516,11.75 " filter="url(#dropShadow)"/>
</svg>
我用 Adobe Illustrator 生成了这个,然后通过代码添加了阴影。
谢谢!