i'm a coder from germany and we're developing an application to generate SVG for using it on cnc machine tools.
My shell script It is working perfectly when calling inkscape from the command line with GUI:
Code: Select all
inkscape \
--file=front.svg \
--verb=EditDeselect \
--select=cc_shape_box \
--select=cc_shape_circle \
--verb=SelectionUnion \
--verb=EditDeselect \
--select=F1 \
--select=F2 \
--select=F3 \
--select=F4 \
--select=F5 \
--select=F6 \
--select=F7 \
--select=F8 \
--select=F9 \
--select=F10 \
--select=F11 \
--select=F12 \
--select=F13 \
--select=F14 \
--select=F15 \
--select=F16 \
--verb=ObjectToPath \
--verb=SelectionUnion \
--verb=EditDeselect \
--verb=EditSelectAll \
--verb=SelectionDiff \
--verb=FileSave \
--verb=FileClose
But if i run this with the -z / --without-gui option, nothing happens.
This app should run on an server, so i don't want to operate with the GUI, also there will be traffic on, so i'll think it will run into performance problems.
Any ideas how i could get this to work without using the GUI ?
thanks in advance!
Stefan