Package Exports
- svg-path-commander
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (svg-path-commander) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
SVGPathCommander
A modern set of ES6/ES7 JavaScript tools to split, normalize, parse, convert and revert SVGPathElement description attribute.
This library is made possible thanks to Raphael.js, Paper.js and is used by KUTE.js and probably more.
Install
npm install svg-path-commander
CDN
Find SVGPathCommander on jsDelivr or cdnjs
Usage
On a regular basis, you can import, initialize and access methods, or return the values right away.
// ES6+ stuff
import SVGPathCommander from 'svg-path-commander'
let pathString = 'M0 0l50 0l50 50z';
// initializing
let mySVGPathCommanderInit = new SVGPathCommander(pathString);
/* returns => {
segments: [ ['M',0,0], ['l',50,0], ['l',50,50], ['z'] ],
pathValue: 'M0 0l50 0l50 50z'
}
*/
// reuse same init object to call different methods
// for instance convert to ABSOLUTE and return the string path
mySVGPathCommanderInit.toAbsolute().toString()
// or convert to RELATIVE and return the string path
mySVGPathCommanderInit.toRelative().toString()
// or convert to CURVE and return the string path
mySVGPathCommanderInit.toCurve().toString()
// reverse and return the string path
mySVGPathCommanderInit.reverse().toString()
// or return directly what you need
let mySVGAbsolutePath = new SVGPathCommander(pathString).toAbsolute().toString()
Advanced Usage
In some cases, you can also import only the tool you need, without importing the entire library.
import pathToAbsolute from 'svg-path-commander/src/convert/pathToAbsolute.js'
import toString from 'svg-path-commander/src/convert/toString.js'
let mySVGAbsolutePath = toString(pathToAbsolute(pathString))
Some Technical Considerations
- the
reverse()
method may not return the same number of path commands as the input path whenarcTo
path commands havelargeArcFlag
set to 1 - the
toCurve()
method will convert all path commands totoCubicBezier
path command, includingZ
, which might make it difficult to work with and knowing the - all tools processing path segments will always round float values to 3 decimals, but only float numbers; EG: 0.5666 => 0.566
Tools
Type in "SVGPathCommander." in your browser console and have a look, there are a wide range of tools to play with.
Special Thanks
- Jürg Lehni & Jonathan Puckey for their Paper.js
- Dmitry Baranovskiy for his Raphael.js
- Andrew Willems for his awesome guide
License
SVGPathCommander is MIT Licenced