Code Samples - Neevia docCreator

Example 16: Extract a page from an existing PDF file - 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
   <SCRIPT runat="server" language="VB">

     Sub Page_Load(Source As Object, e As EventArgs)

      Dim pageToExtract As Integer = 2

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

      Dim RVal As Integer
      RVal = DC.extractPDFPages("d:\test.pdf","d:\page.pdf", _
                                pageToExtract, pageToExtract)

      DC = Nothing

      If RVal=0 Then
        Response.Write("Done !!!")
      Else
        Response.Write("There was an error extracting the page !!!")
      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
   <SCRIPT runat="server" language="C#">

     void Page_Load(object Source, EventArgs e)
     {

      int pageToExtract = 2;

      Neevia.docCreator DC = new Neevia.docCreator();
  
      int RVal = DC.extractPDFPages(@"d:\test.pdf",@"d:\page.pdf",
                                      pageToExtract, pageToExtract);

      DC = null;

      if (RVal != 0) {
         Response.Write("There was an error extracting the page !!!");
      } else {
         Response.Write("Done !!!");
      }

     }
 
   </SCRIPT>