Code Samples - Neevia docCreator

Example 10: Convert a PDF file into TIFF - ASP.NET

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.
Visual Basic Copy 
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
   <SCRIPT runat="server" language="VB">

     Sub Page_Load(Source As Object, e As EventArgs)

       Dim documentToConvert As String = "c:\users\public\test.pdf"

       Dim DC As Object : DC = Server.CreateObject("Neevia.docCreator")

       DC.setParameter("DocumentOutputFormat", "TIFF")
       DC.setParameter("DocumentOutputName", "testTIFF_VBNET")
       DC.setParameter("DocumentOutputFolder", "c:\users\public\")

       DC.setParameter("TIFFType", "tiff24lzw")

       DC.setParameter("DocumentResolution", "150")

       DC.setParameter("MPTiff", "True")

       DC.setInputDocument(documentToConvert)

       Dim RVal As Integer : RVal = DC.create
       DC = Nothing

       If (RVal <> 0) Then
          Response.Write("Error while creating document!!!")
       Else
          Response.Write("Done Converting !!!")
       End If

     End Sub

   </SCRIPT>

C# Copy 
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
   <SCRIPT runat="server" language="C#">

     void Page_Load(object Source, EventArgs e)
     {

      String documentToConvert = @"c:\users\public\test.pdf";

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

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

      DC.setParameter("TIFFType", "tiff24lzw");

      DC.setParameter("DocumentResolution", "150");

      DC.setParameter("MPTiff", "True");

      DC.setInputDocument(documentToConvert, "");

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

      if (RVal != 0)
      {
          Response.Write("Error while creating document!!!");
      }
      else
      {
          Response.Write("Done Converting !!!");
      }

     }

   </SCRIPT>