最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - parse d attribute in SVG path element - Stack Overflow

programmeradmin1浏览0评论

I'm trying to parse the d attribute in SVG Path element, and so far I found that fabric.js can parse SVG, but till now I still don't know how.

I need to parse the path in order to get the shapes in it (lines arcs) and draw squares over them, and most importantly return the attributes of these squares.

any idea how to do this using fabric.js?? or any other library?? or does anyone have a different approach?

the following image has a rectangle and a line both have squares that I drew on their boundaries, and I'm trying to do the same on the path element

I'm trying to parse the d attribute in SVG Path element, and so far I found that fabric.js can parse SVG, but till now I still don't know how.

I need to parse the path in order to get the shapes in it (lines arcs) and draw squares over them, and most importantly return the attributes of these squares.

any idea how to do this using fabric.js?? or any other library?? or does anyone have a different approach?

the following image has a rectangle and a line both have squares that I drew on their boundaries, and I'm trying to do the same on the path element

Share Improve this question edited Nov 25, 2013 at 12:25 lorcan 3,3003 gold badges26 silver badges31 bronze badges asked Feb 23, 2012 at 9:33 zeacusszeacuss 2,6332 gold badges29 silver badges32 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 6

I found this

var cmdRegEx = /[a-z][^a-z]*/ig;
var mands = d.match(cmdRegEx);

which can get each mand with its parameters, but you need to trim each mand from spaces

Based on zeacuss answer and Mark K Cowan suggestion, I'm using:

var cmdRegEx = /([MLQTCSAZVH])([^MLQTCSAZVH]*)/gi
var mands = d.match(cmdRegEx);

Stamped into the same problem. You can use the regep /-?\d+/ig which produces just the numbers, striped from letters, white spaces. and mas.

Python's svgpathtools library might be useful for your needs. This is a list of its features (from the documentation):

Some included tools:

read, write, and display SVG files containing Path (and other) SVG elements
convert Bézier path segments to numpy.poly1d (polynomial) objects
convert polynomials (in standard form) to their Bézier form
pute tangent vectors and (right-hand rule) normal vectors
pute curvature
break discontinuous paths into their continuous subpaths.
efficiently pute intersections between paths and/or segments
find a bounding box for a path or segment
reverse segment/path orientation
crop and split paths and segments
smooth paths (i.e. smooth away kinks to make paths differentiable)
transition maps from path domain to segment domain and back (T2t and t2T)
pute area enclosed by a closed path
pute arc length
pute inverse arc length
convert RGB color tuples to hexadecimal color strings and back
发布评论

评论列表(0)

  1. 暂无评论