Rather than try to port selected parts of Inkscape's inner workings over to Python altogether, I'm wondering if there's a way I can "drive" Inkscape through Python or the command line without needing the GUI.
The man page lists the --verb option, but doesn't really say how to specify options eg. I can do --verb=org.ekips.filter.embedimage to embed an image... but how do I specify the image? How do I then get the ID of that object so I can, say, trace the bitmap with --verb=SelectionTrace, and how do I specify the tracing options to use? Also it doesn't seem possible to create a new image from scratch, so eg.:
Code: Select all
$ inkscape -z --verb=FileNew --verb=FileSaveAs test.svg
...complains that Specified document test.svg cannot be opened (does not exist or not a valid SVG file).
Or maybe command-line usage isn't really the best way to do this. If not, what is?