Articles in this section
Category / Section

How to extract the selected pages from a PDF document using WPF PDF Viewer?

1 min read

The WPF PDFViewer allows the user to extract the text from the PDF document using the ExtractText API, but there is no direct API to extract the pages of the PDF document. This can be achieved as a work around by getting the selected pages from the PageSelected Event and then importing the selected pages into a new document.

Steps to Extract the selected pages from a PDF document:

Step-1: Get the selected pages from the page selected event:

  • Wire the page selected event in the constructor class of the main window.

C#

//Wire the PageSelected event
pdfViewer.PageSelected += PdfViewer_PageSelected;

C#

//Handle the PageSelected Event
private void PdfViewer_PageSelected(object sender, PageSelectedEventArgs e)
{
//Get the selected page indices
selectedPages = e.SelectedPages;
}

Step-2: Import the selected pages from the PDF document:

C#

//Get the instance of the loadedDocument
PdfLoadedDocument loadedDocument = pdfViewer.LoadedDocument;

C#

//Create a new document.
PdfDocument doc = new PdfDocument();
 
for (int i = 0; i < selectedPages.Length; i++)
{
// Importing pages from the source document.
doc.ImportPage(loadedDocument, selectedPages[i]);
}

Step-3: Save and load the created PDF document:

  • Save the document that contains the extracted pages and close the instance.

C#

//Save the document
doc.Save("ImportPages.pdf");
//Close the instance
doc.Close(true);

     

 View Sample in GitHub

See Also:

 

Conclusion

I hope you enjoyed learning about how to extract the selected pages from a PDF document using WPF PDF Viewer.

You can refer to our WPF PDF Viewer feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied