Пример #1
0
 private void Process(string input, string output, int startPage, int endPage)
 {
     // make sure that constructor 'fromMemory' option is set to true if
     // you want to run multiple instances of the Ghostscript
     Ghostscript.NET.Processor.GhostscriptProcessor processor = new Processor.GhostscriptProcessor(_gs_verssion_info, true);
     processor.StartProcessing(CreateTestArgs(input, output, startPage, endPage), new ConsoleStdIO(true, true, true));
 }
 private void Process(string input, string output, int startPage, int endPage)
 {
     // make sure that constructor 'fromMemory' option is set to true if 
     // you want to run multiple instances of the Ghostscript
     Ghostscript.NET.Processor.GhostscriptProcessor processor = new Processor.GhostscriptProcessor(_gs_verssion_info, true);
     processor.StartProcessing(CreateTestArgs(input, output, startPage, endPage), new ConsoleStdIO(true, true, true));
 }