parse SVG to polygons
https://miyanokomiya.github.io/okageo/
yarn add okageo
import * as okageo from 'okageo'
// parse SVG to polygons
const pathInfoList = okageo.parseSvgGraphicsStr(svgString)
// move and resize
const canvas = document.getElementById('canvas')
const inRectList = okageo.fitRect(pathInfoList, 0, 0, canvas.width, canvas.height)
// draw
const ctx = canvas.getContext('2d')
inRectList.forEach((info) => okageo.draw(ctx, info))
# install dependencies
$ yarn install
# lint
$ yarn lint
# test
$ yarn test [--watch]
# build
$ yarn build
# generate doc
$ yarn doc
# serve demo at localhost:1234
$ yarn demo
Update version
in package.json
, commit with a comment Release x.x.x
and merge into the main
branch.
Version | Tag | Published |
---|---|---|
3.0.1 | latest | 6d ago |