What should I do to get a list of points from an SVG path. I know in terms of web development you simply use the SVG library to determine the length of a path and then just sample it at given intervals. The only issue that I cannot seem to find and equivalent library and or methods for doing this in plain C#.
-
It's not clear what you are asking. Are you not including the DOT NET Framework (and its Graphics libraries) as part-and-parcel of plain C#?– Pieter GeerkensCommented Nov 30, 2013 at 20:18
-
O course I am including .net I am just saying this is not asp.net or something– GerharddcCommented Nov 30, 2013 at 20:28
-
SVG is simply done in XML. You could just read the xml tags and parse them. The specs are easily found : w3.org/TR/SVG/paths.html– SidarCommented Dec 1, 2013 at 0:53
Add a comment
|