尝试使用 svgo 将形状从 svg 文件批量转换为路径。
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
}
}
]
}