MergePDFs.cs
  1. //
  2. // This code is part of Document Solutions for PDF demos.
  3. // Copyright (c) MESCIUS inc. All rights reserved.
  4. //
  5. using System;
  6. using System.IO;
  7. using System.Drawing;
  8. using GrapeCity.Documents.Pdf;
  9. using GrapeCity.Documents.Pdf.Annotations;
  10.  
  11. namespace DsPdfWeb.Demos
  12. {
  13. // This sample shows how to merge two existing PDFs into a single document.
  14. // The method GcPdfDocument.MergeWithDocument() provides this feature,
  15. // and allows inserting all or some pages from another PDF into the current
  16. // document. The simplest form of this method is demonstrated in this sample,
  17. // appending a whole PDF to the current document.
  18. public class MergePDFs
  19. {
  20. public int CreatePDF(Stream stream)
  21. {
  22. using var fs0 = File.OpenRead(Path.Combine("Resources", "PDFs", "The-Rich-History-of-JavaScript.pdf"));
  23. using var fs1 = File.OpenRead(Path.Combine("Resources", "PDFs", "CompleteJavaScriptBook.pdf"));
  24.  
  25. var doc = new GcPdfDocument();
  26. doc.Load(fs0);
  27. // Save page count for the navigation link added below:
  28. var pgNo = doc.Pages.Count;
  29. var doc1 = new GcPdfDocument();
  30. doc1.Load(fs1);
  31. doc.MergeWithDocument(doc1, new MergeDocumentOptions());
  32.  
  33. // Insert a note at the beginning of the document:
  34. var page = doc.Pages.Insert(0);
  35. var rc = Common.Util.AddNote(
  36. "GcPdfDocument.MergeWithDocument() method allows adding to the current document all or some pages " +
  37. "from another document.\n" +
  38. "In this sample we load one PDF, append another whole PDF to it, and save the result.\n" +
  39. "Click this note to jump directly to the first page of the 2nd document.",
  40. page);
  41.  
  42. // Link the note to the first page of the second document:
  43. page.Annotations.Add(new LinkAnnotation(rc, new DestinationFit(pgNo + 1)));
  44. // Done (target document must be saved BEFORE the source is disposed):
  45. doc.Save(stream);
  46. return doc.Pages.Count;
  47. }
  48. }
  49. }
  50.