SVG 滤镜feImage

2020-04-03  本文已影响0人  CODERLIHAO
<svg width="360" height="220">
    <defs>
        <filter id="f">
            <feImage xlink:href="http://www.oxxostudio.tw/img/articles/201410/20141003_1_demo.jpg"/>
        </filter>
    </defs>
    <rect x="30" y="30" width="150" height="150" filter="url(#f)" />
    <rect x="30" y="30" width="150" height="150" stroke="#00f" fill="none" />
    <rect x="0" y="0" width="360" height="220" stroke="#000" fill="none" stroke-width="2" />
</svg>
image.png

primitiveUnits

<svg width="360" height="220">
    <defs>
        <filter id="f">
            <feImage xlink:href="https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1585929853539&di=665e1f857db579293bb2edfc05859da5&imgtype=0&src=http%3A%2F%2Fimg32.photophoto.cn%2F20140816%2F0017030559136232_s.jpg"
                     x="0" y="0" width="100" height="100"/>
        </filter>
    </defs>
    <rect x="30" y="30" width="150" height="150" filter="url(#f)" />
    <rect x="30" y="30" width="150" height="150" stroke="#00f" fill="none" />
    <rect x="0" y="0" width="360" height="220" stroke="#000" fill="none" stroke-width="2" />
</svg>
image.png
<svg width="360" height="220">
    <defs>
        <filter id="f" primitiveUnits="objectBoundingBox" >
            <feImage xlink:href="http://www.oxxostudio.tw/img/articles/201410/20141003_1_demo.jpg"
                     x="0" y="0" width="1" height="1"/>
        </filter>
    </defs>
    <rect x="30" y="30" width="150" height="150" filter="url(#f)" />
    <rect x="30" y="30" width="150" height="150" stroke="#00f" fill="none" />
    <rect x="0" y="0" width="360" height="220" stroke="#000" fill="none" stroke-width="2" />
</svg>
image.png
<svg width="360" height="220">
  <defs>
      <filter id="f" primitiveUnits="objectBoundingBox" >
          <feImage xlink:href="http://www.oxxostudio.tw/img/articles/201410/20141003_1_demo.jpg"
                   x="0.5" y="0.1" width="1" height="1"/>
      </filter>
  </defs>
  <rect x="30" y="30" width="150" height="150" filter="url(#f)" />
  <rect x="30" y="30" width="150" height="150" stroke="#00f" fill="none" />
  <rect x="0" y="0" width="360" height="220" stroke="#000" fill="none" stroke-width="2" />
</svg>
image.png

参考

上一篇 下一篇

猜你喜欢

热点阅读