【发布时间】:2013-09-08 22:16:16
【问题描述】:
我正在使用 Inkscape 在 cli no(--without-gui 或 -z)中:
- 按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): WARNING **: 指定文档 test-union-cli.svg 无法打开(不存在或不是有效的 SVG 文件)
文件test-union-cli.svg 不应该存在。那么我在这里做错了什么?
【问题讨论】:
标签: command-line svg inkscape