svg-linearize

1.1.0 • Public • Published

svg-linearize

turn curved svg paths into paths with only line segments

var linearize = require('svg-linearize');
var loadsvg = require('load-svg');
 
loadsvg('face.svg', function (err, svg) {
    var nsvg = linearize(svg, { tolerance: 3 });
    document.body.appendChild(nsvg);
});

methods

var linearize = require('svg-linearize')

var nsvg = linearize(svg, opts)

Create a new svg, nsvg from an existing svg element.

Any curved paths in svg will be converted to line segment paths.

Optionally specify:

  • opts.tolerance - tolerance to feed into simplify-geometry, higher values mean fewer points. Default: 3.
  • opts.segments - number of points to sample each path. Default: 100.

install

With npm do:

npm install svg-linearize

license

MIT

Package Sidebar

Install

npm i svg-linearize

Weekly Downloads

3

Version

1.1.0

License

MIT

Last publish

Collaborators

  • nopersonsmodules