7

我正在尝试将图像添加到 SVG 圆圈的中心。我试过模式

<pattern id="image_birds" x="0" y="0" patternUnits="userSpaceOnUse" height="100" width="100">
<image x="0" y="0" xlink:href="birds.png" height="50" width="50"></image>
</pattern>

但它不会使图像居中。我正在使用 Javascript。

4

2 回答 2

6

剪辑应该做你正在寻找的东西:https ://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Clipping_and_masking

就像是:

<clipPath id="cut-off-bottom">
  <circle cx="100" cy="100" r="50" />
</clipPath>

<image x="25" y="25" xlink:href="http://placehold.it/150.png" height="150" width="150" clip-path="url(#cut-off-bottom)" ></image>

你可以在这里看到这个例子的结果:http: //jsbin.com/EKUTUco/1/edit ?html,output

由您根据图像的大小、通过xy属性在 javascript 中居中。

于 2013-09-03T08:44:44.027 回答
3

好的,我找到了答案。我所做的是在我的 svg中添加一个过滤器:

<filter id = "i1" x = "0%" y = "0%" width = "100%" height = "100%">
    <feImage xlink:href = "birds.png"/>
</filter>

并在圈子中添加属性:

circle.setAttribute('filter','url(#i1)');
于 2013-09-03T11:08:15.650 回答