下面的代码把图像放在(50,50),锚点在左上角。我怎么能改变锚点到图像中心,图像尺寸可能会改变,所以如果只是改变(50,50)到(0,0)将工作为这个图像,但不工作,如果图像尺寸改变。
我尝试添加锚到中心,但不工作。
var svg = d3.select('body')
.append('svg')
.attr('width',100)
.attr('height',100)
.style('border','1px solid red')
.attr('transform','translate(0,0)')
svg.append("image")
.attr("xlink:href", "https://dummyimage.com/100x100/ececec/000000")
.attr("x", 50)
.attr("y", 50)
.attr('anchor','center')
<script src="https://unpkg.com/d3@7.0.4/dist/d3.min.js"></script>
1条答案
按热度按时间mf98qq941#
根据MDN documentation for SVG Image,
image
没有anchor
属性。* 在 * SVG最初布局之后,您可以使用获取SVG的大小和图像的大小并手动执行。大概是这样的: