SVGO形状到路径不会转换椭圆



尝试使用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
      }
    }  
  ]
}  

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

"plugins": 
[{ 
    "convertShapeToPath": 
    { 
        "convertArcs": true 
    } 
}]

相关内容

  • 没有找到相关文章

最新更新