Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A node lib to convert svg shape elements into path svg elements.

NotificationsYou must be signed in to change notification settings

ufo-github/convertPath

 
 

Repository files navigation

A node lib to convert svg shape elements into path svg elements.

Install

npm install convertpath

What it can do

convertpath has a plugin-based architecture, so almost every optimization is a separate plugin.

Today we have:

PluginDescription
convertUseToGroupconvert defs and symbol elements into group svg elements.
convertShapeToPathconvert svg shape elements into path svg elements.
removeGroupsmove some group and move some group attributes to the contained elements
convertTransfromforPathremove transform attribute and convert path data to relative
viewBoxTransformremove width/height attributes and reset ViewBox

Usage

const SVGParser = require('convertpath')const parse = SVGParser.parse('./test/test.svg', {  plugins: [    {      convertUseToGroup: true, // at first    },    {      convertShapeToPath: true,    },    {      removeGroups: true,    },    {      convertTransfromforPath: true,    },    {      viewBoxTransform: true, // at last    },  ],  size: 1000,})const result = parse.toSimpleSvg()console.log(result)const paths = parse.getPathAttributes()console.log(paths)/** * '<circle cx="500" cy="500" r="20" fill="red"/>' */console.log(parse.toSimpleSvg())/** * '<path d="M500,500,m-20,0,a20,20,0,1,0,40,0,a20,20,0,1,0,-40,0,Z" fill="red"/>' */

API

SVGParser.parse(filename)

SVGParser.parseStr(svgString)

SVGParser.parseNode(node)

parse.toSimpleSvg()

parse.getPathAttributes

CHANGELOG

CHANGELOG.md

Special thanks

注意:

  • 1.svg 区分大小写, 如viewBoxviewbox,minify 压缩会导致viewBox 变成小写
  • 2.stroke-width 属性指定了当前对象的轮廓的宽度。它的默认值是 1。如果使用了一个<percentage>,这个值代表当前视口的百分比。如果使用了 0 值,则将不绘制轮廓。viewBox 变更stroke-width 也需要变更。

About

A node lib to convert svg shape elements into path svg elements.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript100.0%

[8]ページ先頭

©2009-2025 Movatter.jp