How to extract the selected pages from a PDF document using WPF PDF Viewer?
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;
- Get the selected page indices from the PageSelectedEventArgs and store it as a integer array.
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:
- Get the instance of the loaded document from the PdfViewerControl.
C#
//Get the instance of the loadedDocument PdfLoadedDocument loadedDocument = pdfViewer.LoadedDocument;
- Create a new PdfDocument and then import the selected indices from the loaded document to the newly created document.
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:
C#
//Save the document doc.Save("ImportPages.pdf"); //Close the instance doc.Close(true);
See Also:
- Importing pages from an existing document.
- Exporting PDF pages in WPF Pdf Viewer
- How to extract text from the predefined rectangle from a PDF document?
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 forums, Direct-Trac, or feedback portal. We are always happy to assist you!