【发布时间】:2021-10-01 16:56:41
【问题描述】:
我正在使用python svgwrite 创建一个SVG 文件,并且在我的绘图中心有一个我用路径创建的形状。我想删除不在包装形状内的元素。
首先,我可以在svgwrite 中删除它们吗?如果不是,我怎样才能找到前端中的所有元素,使用 javascript 删除任何不在我的形状内的元素?
svgwrite
# dots that are genrated in the svg are like this
image.add(image.circle((x, y), mag, id='dot', stroke="none", fill=color))
# this is my heart shape that should dots go inside of it
image.defs.add(image.path(d="M0 200 v-200 h200 a100,100 90 0,1 0,200 a100,100 90 0,1 -200,0z", id="heart_shape", style="rotate: 225deg;scale:1.9;stroke: #fff;", opacity="1"))
image.add(image.use(href="#heart_shape", fill="none", insert=(half_x, str(height-80)+"mm"), id="heart_wrapper"))
我更喜欢使用 javascript 在前端删除它们。我得到了如下形状的边界:
var heart = document.querySelector("#heart_wrapper")
var {xHeart, yHeart} = heart.getBBox()
注意:我不确切知道的是如何确定dot 是否在我的形状内。我知道如何选择所有点并删除它们
这是生成的 svg 形状:
<use xmlns="http://www.w3.org/2000/svg" fill="none" id="heart_wrapper" x="377.9527559055118" xlink:href="#heart_shape" xmlns:xlink="http://www.w3.org/1999/xlink" y="195mm">
<path d="M0 200 v-200 h200 a100,100 90 0,1 0,200 a100,100 90 0,1 -200,0z" id="heart_shape" opacity="1" style="rotate: 225deg;scale:1.9;stroke: #fff;"></path>
</use>
【问题讨论】:
-
顺便说一句,我发现 element.getBoundingClientRect() 方法将返回元素相对于视口的正确坐标,无论 SVG 是否已被缩放和/或翻译。所以 getBBox() 是我应该使用的方法
标签: javascript python svg