svgpathtools icon indicating copy to clipboard operation
svgpathtools copied to clipboard

A collection of tools for manipulating and analyzing SVG Path objects and Bezier curves.

Results 74 svgpathtools issues
Sort by recently updated
recently updated
newest added

The SVG I imported contains multiple subpaths. Even if each subpath's path[-1].end equals path[0].start, and even if every subpath ends with a 'z', there is always at least one subpath...

With some svg I have this error : File "B:\berialdraw\scripts\svg2icn.py", line 288, in icn.parse() File "B:\berialdraw\scripts\svg2icn.py", line 15, in parse new_paths = self.move_paths_to_origin(converted_paths, self.x, self.y) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "B:\berialdraw\scripts\svg2icn.py", line 209,...

Consider an SVG file like the following: ```svg ``` Currently, if we get the paths and attributes like this... ```python paths, attributes = svg2paths(filepath) ``` ...then the `fill` attribute on...

First and formost thank you for svgpathtools. It is the only python package I have found that will create a viewbox that matches that produced by Inkscape. That said this...