我需要以编程方式在服务器端将SVG图像拆分为较小的部分(方形图块),最好使用JavaScript,PHP或任何命令行工具。
最接近我的是Inkscape的命令行工具。创建位图很容易:
inkscape input.svg --export-png=output.png --export-area=0:0:100:100
但是SVG不支持指定出口区域:
inkscape input.svg --export-plain-svg=output.svg --export-area=0:0:100:100
我该怎么做?