Package Exports
- extract-svg-path
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 (extract-svg-path) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
extract-svg-path
Grabs all the <path> data from an SVG file, concatenating them into a single string.
This is mostly useful for simple shapes and silhouettes. It works in Node/Browser and provides a transform for inlining paths into a bundle.
Install
npm install extract-svg-path [-g|--save]Example
var parse = require('parse-svg-path')
var extract = require('extract-svg-path')
var path = extract(__dirname + '/infinity.svg')
var svg = parse(path)
console.log(svg)
//=> [ [ 'M', 25, 15 ], ... ]Usage
extractSvgPath(file[, opt])
Extracts the SVG <path> contents of the given file path, using fs.readFileSync with utf8 by default. Any options will be passed along to cheerio, but with xmlMode default to true. Additional options:
encodingthe file encoding, defaults to utf8
extractSvgPath.parse(contents)
Extracts the paths from the string contents of an SVG file.
Browser Usage
Without a transform, only the parse method is supported. This can accept either a string (i.e. from xhr response) or an SVG node (i.e. from load-svg).
var parse = require('parse-svg-path')
var extract = require('extract-svg-path').parse
var load = require('load-svg')
load('svg/infinity.svg', function(err, svg) {
var paths = parse(extract(svg))
})With browserify, you can use the transform to inline files into your bundle. For example:
var parse = require('parse-svg-path')
var svg = require('extract-svg-path')(__dirname + '/shape.svg')
var path = parse(svg)Then:
browserify index.js -t extract-svg-path/transformChanges
2.1- renamedfromStringtoparsein a backwards-compatible manner2.0- usesxml-parse-from-string, removed CLI to reduce dependency bloat, renamedextractmethod tofromString, merged transform into this module- a CLI might be re-done later in a separate module
1.0- includes a CLI,extractmethod
License
MIT, see LICENSE.md for details.