如何在 Inkscape 中重新定位文件

如何在 Inkscape 中重新定位文件

当我的脚本生成新版本的 SVG 时,我试图让 Inkscape 重新定位(重新加载)SVG 文件。根据 1.3 发行说明,有一个“新操作‘rebase-file’,它可以用另一个文件的内容替换当前文档的内容”。根据帮助>关于我的 Inkscape 是 1.3.2。但是

"C:\Program Files\Inkscape\bin\inkscape.exe" --actions=rebase-file

结果是

InkscapeApplication::parse_actions: could not find action for: rebase-file

答案1

发行说明中有一个拼写错误;操作file-rebase不正确rebase-file

要使用该file-rebase操作,您需要使用-q--active-window标志选择活动窗口:

inkscape --actions="file-rebase" -q 
# or
inkscape --actions="file-rebase" --active-window

相关内容