我想将我在<defs>
作为源输入中定义的元素用于另一个元素的过滤器。
我的目标是使用两种形式进行合成:一种是我应用过滤器,另一种是。
我期待这能奏效,但它没有:
<defs>
<rect id="shape1" (...) />
<filter id="f1">
<feComposite in="SourceGraphic" in2="#shape1" operator="xor" />
</filter>
</defs>
<circle id="shape2" filter="url(#f1)" (...) />
我该如何更换in2="#shape1"
才能使其正常工作?