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

This SVG path: ```svg M15.65 16.105v-.24a3.543 3.543 0 00-1.267-2.471c-.724-.663-1.69-.965-2.655-.904-1.87.12-3.378 1.747-3.378 3.615 0 .784.12 1.567.422 2.471H4.55V6.946l7.42-5.123 7.482 5.122v11.692h-4.223c.18-.663.422-1.688.422-2.532m5.068-10.244L12.452.136c-.301-.181-.663-.181-.905 0L3.222 5.86c-.242.12-.362.361-.362.663V19.48c0 .482.362.844.844.844H9.92a.824.824 0 00.844-.844c0-.06 0-.18-.06-.24l-.06-.182c-.302-.723-.664-1.627-.664-2.53v-.182c-.06-.542.12-1.084.482-1.446a2.095 2.095 0 011.388-.723c.543-.06 1.026.12 1.448.482.422.362.664.844.724 1.386v.18c.06 1.206-.724...

# Setup python 3.8.6 svgpathtools master (45dc873f82fba28ae905eb4262446cc54908a8a8) # Expected Arc with rotation transform are interpreted correctly: E.g.: ```svg [...] [...] ``` Full test file: [arc_with_rotate.svg.zip](https://github.com/mathandy/svgpathtools/files/5552564/arc_with_rotate.svg.zip) Displayed by macOS: # Actual...

Hi, It doesn't seem to parse any circles, ellipses, or rects from SVG's generated in Illustrator. It doesn't error, but just skips them. Is this possible?

The following code is taken from the README. I'm attempting to parse SVG images and then reconstruct them without any losses. ``` from svgpathtools import svg2paths2, wsvg paths, attributes, svg_attributes...

I have svgpathtools 1.3.3 installed, and when I try to use the `Document` object I get an error: ```python >> import svgpathtools as svg >> doc = Document('../analysis_documentation/pics/lindhard2_curves.svg') NameError: name...

I've run in to a couple of bugs with Arc.intersect(Arc). I've documented/reproduced the bugs here: https://github.com/SebKuzminsky/svgpathtools/commits/arc-arc-intersect I don't currently have a fix for this.

Hi I'm having a weird issue. i install svgpathtools (v 1.3.3) via a `setup.py` script in a package i have. For some reason the installed package ends up with two...

Question as above. Context: I am currently working on a lasercutting project. All our toolchains use mm as unit. Currently, when using paths2svg.wsvg, then the unit is set to px....

Currently, svgpathtools cannot parse/render this kind of path: M 0,0 V 1 H 1 V 0 Z M 2,0 V 1 H 3 V 0 Z # (1) The issue...

First time using svgpathtools today, also not too experienced with python. I basically want to use svgpathtools to run some checks and based on them change the path element slightly....