Skip to content

dy/svg-path-bounds

Repository files navigation

svg-path-bounds test

Retrieve bounding box from svg path data.

npm install svg-path-bounds

const getBounds = require('svg-path-bounds')

let [left, top, right, bottom] = getBounds('M0 0L10 10 20 0Z') // [0, 0, 20, 10]

bounds = getBounds(path|segments)

Calculate bounding box for svg path data string or parsed path segments array. The box is detected by controlling points, not the real path.

Related

Similar

License

MIT © Dmitry Iv.

About

Get boundary box of svg path data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published