
On 3/26/07, inkscape-user-request@lists.sourceforge.net inkscape-user-request@lists.sourceforge.net wrote:
Message: 8 Date: Sat, 24 Mar 2007 10:07:07 -0500 From: Aaron Spike <aaron@...476...> Subject: Re: [Inkscape-user] command-line export on Windows: no file generated To: Inkscape User Community inkscape-user@lists.sourceforge.net Message-ID: <46053E9B.3030104@...476...> Content-Type: text/plain; charset=ISO-8859-1
[snip]
Even though you don't have a console executable on win32 you can still capture the output by doing:
inkscape.exe file.svg 2>output.txt
Ah, I didn't think of that, great, that helps!
Now as for your problem exporting I think you'll find that it works if you use full paths. Inkscape seems to use the inkscpe install directory as the working directory and it searches there for files unless you provide the full path. Don't forget quotes if there are spaces in the path:
"c:\path to\inkscape.exe" -A "c:\another path to\destination.pdf" "c:\third path to\source.svg" 2>log.txt
Yup, that was it, everything works now; thanks!