我在 cli no ( --without-gui
or -z
) 中使用 Inkscape 来:
- 通过 id (
hanzi
,pinyin
) 选择多个节点; - 建立他们的联盟;
- 另存为新文件 (
test-union-cli.svg
)。
命令
所以我使用这个命令:
inkscape -z -f ./䖠-x45A0.svg \
--select=hanzi --select=pinyin \
--verb SelectionUnion --verb FileSaveCopyAs \
--verb=FileClose test-union-cli.svg
输出错误
** (inkscape:27462): CRITICAL * : Inkscape::XML::Document sp_repr_read_file(const gchar*, const gchar*): 断言 `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )' 失败
** (inkscape:27462): CRITICAL * : Inkscape::XML::Document sp_repr_read_file(const gchar*, const gchar*): 断言 `Inkscape::IO::file_test( filename, G_FILE_TEST_EXISTS )' 失败
** (inkscape:27462): 警告 **: 指定的文档 test-union-cli.svg 无法打开(不存在或不是有效的 SVG 文件)
该文件test-union-cli.svg
不应该存在。那么我在这里做错了什么?