SelectPdf for .NET - Pdf Split - VB.NET / ASP.NET MVC Sample

This sample shows how to use SelectPdf Library for .NET to split a pdf document into several pdf documents or extract only certain pages from the original document and create a new pdf document only with them.

Here is our initial test pdf document:
Test file

Click on the "Create PDF" button below to see the result. This sample will create a new pdf document containing only pages 2 and 3 from the original pdf document.


Sample Code VB.NET



Imports SelectPdf

Namespace Controllers
    Public Class PdfSplitController
        Inherits Controller

        ' GET: PdfSplit
        Public Function Index() As ActionResult
            Return View()
        End Function

        <HttpPost> _
        Public Function SubmitAction(collection As FormCollection) As ActionResult
            ' the initial file
            Dim file1 As String = Server.MapPath("~/files/doc.pdf")

            ' load the pdf document
            Dim doc1 As New PdfDocument(file1)

            ' create a new pdf document
            Dim doc As New PdfDocument()

            ' add 2 pages to the new document
            If doc1.Pages.Count > 2 Then
                doc.AddPage(doc1.Pages(1))
                doc.AddPage(doc1.Pages(2))
            End If

            ' save pdf document
            Dim pdf As Byte() = doc.Save()

            ' close pdf document
            doc.Close()

            ' return resulted pdf document
            Dim fileResult As FileResult = New FileContentResult(pdf, "application/pdf")
            fileResult.FileDownloadName = "Document.pdf"
            Return fileResult
        End Function
    End Class
End Namespace