我有一个 SVG,我想在命令行上将其逆时针旋转 90 度。
使用 Inkscape 1.2.2,我尝试
inkscape --actions "select-all;transform-rotate=90;export-filename:out.svg;export-do" input.svg
但这只能给出
InkscapeApplication::parse_actions: could not find action for: transform-rotate=90
有什么提示吗?
答案1
与使用的其他参数一样(export-filename:out.svg
),您应该使用冒号而不是等号transform-rotate:90
。
尝试:
inkscape --actions "select-all;transform-rotate:90;export-filename:out.svg;export-do" input.svg