1

尝试使用 svgo 将形状从 svg 文件批量转换为路径。

https://github.com/svg/svgo

svgo --version
1.2.0

看起来像椭圆的元素不会转换为路径

在命令行上进行了测试,例如:

➜ svg svgo --enable=convertShapeToPath 1.svg

➜ svg svgo --enable=convertShapeToPath --config=conf.json --pretty 1.svg

与 config.json 有

{ "convertArcs": true }

也试过

"plugins": [
    {
  "name": "convertShapeToPath",
  "params": {
    "convertArcs": true
  }
},

也试过

{
  "pretty": true,
  "multipass": true,
  "floatPrecision": 2,
  "plugins": [
    {
      "name": "convertShapeToPath",
      "enabled": true,
      "params": {
        "convertArcs": true
      }
    }  
  ]
}  
4

1 回答 1

1

最后,它与必须如下的配置对象格式有关:

"plugins": 
[{ 
    "convertShapeToPath": 
    { 
        "convertArcs": true 
    } 
}]
于 2019-03-20T20:06:12.687 回答