Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I receive a multi-page PDF from Ghostscript.Net with the following arguments. But as soon as I want to create a multi-page Tiff with the following changed argument switches.Add("-sDEVICE=tiff24nc") I get the error 'gsapi_init_with_args' is made: -100.
What is wrong, I am grateful for any pertinent hints


C#
List switches = new List();
            switches.Add("-dBATCH");
            switches.Add("-dNOPAUSE");
            switches.Add("-dNOPROMPT");
            switches.Add("-dPrinted");
            switches.Add("-sDEVICE=pdfwrite");
            switches.Add("-sOutputFile=" + outputFilePath);
            switches.Add("-f");
            switches.Add(inputFilePath);>


What I have tried:

Ghostscript says use as Device tiff24nc
Even in the sample of Ghostscript.Net they use switches.Add("-sDEVICE=tiff24nc")
Posted
Updated 28-Jun-19 15:26pm

1 solution

There are dedicated support resources for GhostScript: [^]
Quote:
If you cannot find what you want, then a simple web search will (in many cases) produce results. If that fails, then there is a community of helpful people at: http://stackoverflow.com/search?q=ghostscript

If your problem is specifically with Postscript, then the Usenet group comp.lang.postscript has Postscript experts on it.

If all else fails, you can always approach the Ghostscript developers on the #ghostscript channel on irc.freenode.net. The following link should open a window to this on most modern browsers: http://webchat.freenode.net/?channels=ghostscript

This channel is logged by Artifex and there is a search facility that might help you find past discussions relevant to your need. Our developers are very busy and are spread across several time zones, so please be patient; just be prepared to ask your question and then wait for a response.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900