Code Samples - Neevia docCreator

Example 8: Convert a PostScript document into PDF - C# Copy 

Add a reference in your Visual Studio project to docCreator library.
To do this:
        a. On the Project menu, click Add Reference;
        b. On the COM tab, locate Neevia docCreator COM interface and then click Select;
        c. Click OK in the Add References dialog box to accept your selections.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
   String docToConvert = @"c:\users\public\test.ps";

   Neevia.docCreator DC = new Neevia.docCreator();

   DC.setParameter("DocumentOutputFormat", "PDF");
   DC.setParameter("DocumentOutputName", "testPS_CSHARP");
   DC.setParameter("DocumentOutputFolder", @"c:\users\public\");

   int RVal = DC.setInputDocument(docToConvert, "");
   if (RVal != 0) { MessageBox.Show("Invalid input document!!!"); }

   RVal = DC.create();
   DC = null;

   if (RVal != 0) {
      MessageBox.Show("Error while converting the document!!!");
   } else {
      MessageBox.Show("Done!!!");
   }