The Syncfusion Xamarin PDF library makes it easy to merge or combine multiple PDF files into a single PDF document in C#. The process is simple and efficient, and the merged PDF files retain their original formatting, layout, annotations, bookmarks, form fields, and appearance.
Here is an example of how to merge PDF files in C# using the Syncfusion .NET PDF library. You can merge multiple PDF files into a single PDF document with just a few lines of code.
//Create a PDF document.
using (PdfDocument finalDocument = new PdfDocument())
{
//Get the stream from an existing PDF document.
using (Stream firstPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File1.pdf"))
using (Stream secondPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File2.pdf"))
{
//Create a PDF stream for merging.
Stream[] streams = { firstPDFStream, secondPDFStream };
//Merge PDF documents.
PdfDocumentBase.Merge(finalDocument, streams);
//Save the document into a stream.
using (MemoryStream outputStream = new MemoryStream())
{
finalDocument.Save(outputStream);
}
}
}
Merging specific ranges of pages from different PDF documents is a quick and easy way to combine different parts of documents into a single PDF document.
//Create a PDF document
using (PdfDocument finalDocument = new PdfDocument())
{
//Get the stream from an existing PDF document.
using (Stream firstPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File1.pdf"))
{
//Load the first PDF document.
PdfLoadedDocument loadedDocument1 = new PdfLoadedDocument(firstPDFStream);
//Import a range of pages from the first PDF document into the final document.
//The range starts at page 2 and ends at the last page.
finalDocument.ImportPageRange(loadedDocument1, 1, loadedDocument1.Pages.Count - 1);
using (Stream secondPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File2.pdf"))
{
//Load the second PDF document.
PdfLoadedDocument loadedDocument2 = new PdfLoadedDocument(secondPDFStream);
//Import a range of pages from the second PDF document into the final document.
//The range starts at page 2 and ends at page 5.
finalDocument.ImportPageRange(loadedDocument2, 2, 5);
//Save the document into a stream.
using (MemoryStream outputStream = new MemoryStream())
{
finalDocument.Save(outputStream);
}
}
}
}
Extend the margin of PDF pages while merging PDF documents.
//Create a PDF document.
using (PdfDocument finalDocument = new PdfDocument())
{
//Get the stream from an existing PDF document.
using (Stream firstPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("CreatePDFDocument.Assets.File1.pdf"))
{
//Load the first PDF document.
PdfLoadedDocument loadedDocument1 = new PdfLoadedDocument(firstPDFStream);
//Import a range of pages from the first PDF document into the final document.
//The range starts at page 2 and ends at the last page.
finalDocument.ImportPageRange(loadedDocument1, 1, loadedDocument1.Pages.Count - 1);
using (Stream secondPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("CreatePDFDocument.Assets.File2.pdf"))
{
//Create a PDF stream for merging.
Stream[] streams = { firstPDFStream, secondPDFStream };
//Create a merge options object.
PdfMergeOptions mergeOptions = new PdfMergeOptions();
//Enable the extend margin option.
mergeOptions.ExtendMargin = true;
//Merge PDF documents.
PdfDocumentBase.Merge(finalDocument, mergeOptions, streams);
//Save the document into a stream.
using (MemoryStream outputStream = new MemoryStream())
{
finalDocument.Save(outputStream);
}
}
}
}
Optimize PDF resources when merging multiple PDF documents into a single PDF document.
//Create a PDF document.
using (PdfDocument finalDocument = new PdfDocument())
{
//Get the stream from an existing PDF document.
using (Stream firstPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File1.pdf"))
{
//Load the first PDF document.
PdfLoadedDocument loadedDocument1 = new PdfLoadedDocument(firstPDFStream);
//Import a range of pages from the first PDF document into the final document.
//The range starts at page 2 and ends at the last page.
finalDocument.ImportPageRange(loadedDocument1, 1, loadedDocument1.Pages.Count - 1);
using (Stream secondPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File2.pdf"))
{
//Create a PDF stream for merging.
Stream[] streams = { firstPDFStream, secondPDFStream };
//Create a merge options object
PdfMergeOptions mergeOptions = new PdfMergeOptions();
//Enable the optimize resources option
mergeOptions.OptimizeResources = true;
//Merge PDF documents.
PdfDocumentBase.Merge(finalDocument, mergeOptions, streams);
//Save the document into a stream.
using (MemoryStream outputStream = new MemoryStream())
{
finalDocument.Save(outputStream);
}
}
}
}
When merging multiple PDF files, users can create bookmarks based on the titles of individual files. This will help quickly navigate to specific sections of the merged file.
//Create a PDF document.
using (PdfDocument finalDocument = new PdfDocument())
{
//Get the stream from an existing PDF document.
using (Stream firstPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File1.pdf"))
{
//Load the first PDF document.
PdfLoadedDocument loadedDocument1 = new PdfLoadedDocument(firstPDFStream);
//Import a range of pages from the first PDF document into the final document.
//The range starts at page 2 and ends at the last page.
finalDocument.ImportPageRange(loadedDocument1, 1, loadedDocument1.Pages.Count - 1);
using (Stream secondPDFStream = typeof(App).GetTypeInfo().Assembly.GetManifestResourceStream("Sample.Assets.File2.pdf"))
{
//Create a PDF stream for merging.
Stream[] streams = { firstPDFStream, secondPDFStream };
//Create a bookmark for the first PDF file.
PdfBookmark bookmark1 = finalDocument.Bookmarks.Add("Chapter 1 - Barcodes");
//Set the destination page for the first bookmark.
bookmark1.Destination = new PdfDestination(finalDocument.Pages[0]);
//Set the destination for the first bookmark.
bookmark1.Destination.Location = new PointF(20, 20);
//Create a bookmark for the second PDF file.
PdfBookmark bookmark2 = finalDocument.Bookmarks.Add("Chapter 2 - HTTP Succinctly");
//Set the destination page for the second bookmark.
bookmark2.Destination = new PdfDestination(finalDocument.Pages[3]);
//Set the destination for the second bookmark.
bookmark2.Destination.Location = new PointF(20, 20);
//Merge PDF documents.
PdfDocumentBase.Merge(finalDocument, streams);
//Save the document into a stream.
using (MemoryStream outputStream = new MemoryStream())
{
finalDocument.Save(outputStream);
}
}
}
}
Merging PDF files using the Syncfusion.NET PDF library is a fast and efficient way to manage multiple PDF documents using C#. Besides this process, developers can also:
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.