Syncfusion Feedback


Trusted by the world’s leading companies

Overview

The Syncfusion Blazor PDF library allows users to split a PDF file into multiple sub-documents quickly and accurately. It also allows users to split, combine, import, and append PDFs.

Split PDF Blazor


How to split PDF files using Blazor

  1. Install the Syncfusion.Pdf.Net.Core NuGet package in your project.
  2. Create FileStream objects to represent input PDF files.
  3. Create a PdfLoadedDocument object by passing the FileStream object.
  4. Create a new PDF document using the PdfDocument class.
  5. Use the ImportPage method of the PdfDocumentBase class to split a PDF document into multiple files.
  6. Save the PdfDocument object to the FileStream object.

Here is an example of how to split PDF files using the Syncfusion Blazor PDF library. You can split a PDF file into a single page or multiple page PDF document with just a few lines of code.

  1. //Create the FileStream object
  2. FileStream inputStream = new FileStream("Input.pdf", FileMode.Open, FileAccess.Read);
  3. //Load a PDF document
  4. PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream);
  5. //Iterate over the pages
  6. for (int pageIndex = 0; pageIndex < loadedDocument.PageCount; pageIndex++)
  7. {
  8. //Create a new PdfDocument object
  9. using (PdfDocument outputDocument = new PdfDocument())
  10. {
  11. //Import the page from the loadedDocument to the outputDocument
  12. outputDocument.ImportPage(loadedDocument, pageIndex);
  13. //Save the document into a filestream object
  14. using (MemoryStream outputStrem = new MemoryStream())
  15. {
  16. outputDocument.Save(outputStrem);
  17. //Download the PDF document
  18. await JS.SaveAs("Output" + pageIndex + ".pdf", outputStrem.ToArray());
  19. }
  20. }
  21. }

PDF split options

Split a range of pages into a separate PDF document

A range of pages can be split into a separate PDF document.

  1. FileStream inputStream = new FileStream("Input.pdf", FileMode.Open, FileAccess.Read);
  2. //Load a PDF document
  3. using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream))
  4. {
  5. int[,] values = new int[,] { { 0, 2 },{ 2, 4 } };
  6. loadedDocument.DocumentSplitEvent += (object sender, PdfDocumentSplitEventArgs args) =>
  7. {
  8. MemoryStream stream = new MemoryStream();
  9. args.PdfDocumentData.CopyTo(stream);
  10. //Download the PDF document
  11. JS.SaveAs(Guid.NewGuid().ToString() + ".pdf", stream.ToArray());
  12. };
  13. //Import the page from the loadedDocument to the outputDocument
  14. loadedDocument.SplitByRanges(values);
  15. }

Import or delete certain pages from a PDF file

Users can get specific pages or delete certain pages from a PDF document.

  1. //Create the FileStream object
  2. FileStream inputStream = new FileStream("Input.pdf", FileMode.Open, FileAccess.Read);
  3. //Load the PDF document from stream
  4. using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream))
  5. {
  6. //Creates a new PDF document
  7. using (PdfDocument outputDocument = new PdfDocument())
  8. {
  9. //Remove the first page in the PDF document
  10. loadedDocument.Pages.RemoveAt(0);
  11. //Import certain pages to the new PDF document
  12. outputDocument.ImportPage(loadedDocument, 0);
  13. //Save the document into a filestream object
  14. using (MemoryStream outputStrem = new MemoryStream())
  15. {
  16. outputDocument.Save(outputStrem);
  17. //Download the PDF document
  18. await JS.SaveAs("Output.pdf", outputStrem.ToArray());
  19. }
  20. }
  21. }

Split a document based on bookmarks

Split a PDF document based on bookmarks.

  1. //Create the FileStream object
  2. using (FileStream inputStream = new FileStream("Input.pdf", FileMode.Open, FileAccess.Read))
  3. //Load the PDF document from stream
  4. using (PdfLoadedDocument loadedDocument = new PdfLoadedDocument(inputStream))
  5. {
  6. //Create bookmark object
  7. PdfBookmarkBase bookmarks = loadedDocument.Bookmarks;
  8. //Load the PDF document from stream
  9. foreach (PdfBookmark bookmark in bookmarks)
  10. {
  11. if (bookmark.Destination != null)
  12. {
  13. if (bookmark.Destination.Page != null)
  14. {
  15. int endIndex = bookmark.Destination.PageIndex;
  16. //Create a new PDF document
  17. using (PdfDocument document = new PdfDocument())
  18. {
  19. foreach (PdfLoadedBookmark childBookmark in bookmark)
  20. {
  21. endIndex = childBookmark.Destination.PageIndex;
  22. }
  23. //Import the pages to the new PDF document
  24. document.ImportPageRange(loadedDocument, bookmark.Destination.PageIndex, endIndex);
  25. //Save the document into a filestream object
  26. using (MemoryStream outputStrem = new MemoryStream())
  27. {
  28. document.Save(outputStrem);
  29. //Download the PDF document
  30. await JS.SaveAs(bookmark.Title + ".pdf", outputStrem.ToArray());
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }




Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.

Scroll up icon
Chat with us