Search found 2 matches
- Tue Nov 11, 2014 12:39 am
- Forum: Programming
- Topic: Inkscape not creating output file. C#
- Replies: 3
- Views: 3583
Re: Inkscape not creating output file. C#
As always it's the simplest things that get you. the string fileType was being passed in as all caps. Since I am using that variable as part of the command line call it needs to be sent as lower case. Only 6 hours of troubleshooting! Thanks for all your help.
- Fri Nov 07, 2014 6:36 am
- Forum: Programming
- Topic: Inkscape not creating output file. C#
- Replies: 3
- Views: 3583
Inkscape not creating output file. C#
Can anybody tell me what I'm doing wrong here? The svg file is created but the output is not. I do not get any errors until I try and find the output file. // Set the temporary file names. string svgFileName = GetTempFileName() + ".svg"; string outputFile = GetTempFileName() + "."...