How to Merge PDF Files Using iTextSharp
Merging PDF documents is a common requirement in various software applications, such as document management systems, report generation tools, and more. In the .NET ecosystem, developers have several libraries at their disposal to manipulate PDF files. iTextSharp and IronPDF are two popular choices for working with PDFs in C# applications. In this article, we will explore how to merge PDFs using iTextSharp and compare it with IronPDF to help you make an informed decision when choosing a library for your PDF manipulation needs.
How to Merge PDF Files Using iTextSharp
Here's a step-by-step guide on how to merge PDFs using iTextSharp:
- Create a new
Document
object and specify a base path for your PDF files. - Open the
Document
for editing. - Define an array of PDF file names to merge.
- For each PDF file in the list, create a
PdfReader
, add its contents to thePdfCopy
object, and then close thePdfReader
. - Close the
Document
, finalizing the merged PDF.
IronPDF
IronPDF Webpage is a .NET library that empowers developers to create, modify, and interact with PDF documents within their C# and .NET applications. It simplifies PDF-related tasks by offering features like PDF generation from scratch, HTML to PDF conversion, PDF manipulation (including adding, removing, and modifying content), interactive form handling, PDF merging and splitting, encryption, and cross-platform compatibility, making it a valuable tool for a wide range of applications requiring PDF document management and generation.
iTextSharp
iTextSharp has been replaced by iText 7, as it has reached its End-of-Life (EOL), with only security fixes in sight. It's highly recommended to use iText 7 or consider transitioning existing ones for new projects. iText 7 offers significant improvements, including HTML to PDF conversion, PDF redaction, SVG support, better language support, debugging tools, data extraction, and more modular functionality. It simplifies PDF document handling and is available under AGPL and Commercial licenses.
Install IronPDF Library
To install the IronPDF NuGet package in your Visual Studio project, you can follow these steps:
- Start by opening your project in Visual Studio where you want to use the IronPDF library.
- If you're using Visual Studio, go to Tools > NuGet Package Manager > Package Manager Console.
- In the Package Manager Console, run the following command to install IronPDF:
Install-Package IronPdf
Visual Studio will download and install the package and its dependencies. You can monitor the progress in the Output window. Once the installation is complete, you can start using IronPDF in your C# code.
With IronPDF successfully installed, you can now start using it in your project. Include the necessary "using" statements in your code files and begin working with PDFs using IronPDF's functionality.
using IronPdf;
using IronPdf;
Imports IronPdf
You can now access the features and functionality provided by IronPDF to work with PDF documents in your C# project. Remember to save your project and build it to ensure that the library is properly integrated.
Install iTextSharp PDF Library
To install the iTextSharp PDF library in a C# project, follow these steps:
- Open the C# project where you want to use the iTextSharp library in your preferred integrated development environment (IDE), such as Visual Studio.
- Go to Tools > NuGet Package Manager > Package Manager Console.
- In the Package Manager Console, run the following command:
Install-Package iTextSharp
This command tells NuGet (the package manager for Visual Studio) to download and install the iTextSharp package and its dependencies into your project.
NuGet will download and install the iTextSharp package and any required dependencies. You can monitor the installation progress in the Package Manager Console.
Once the installation is complete, you'll see a confirmation message in the Package Manager Console indicating that the iTextSharp package has been successfully installed. With iTextSharp successfully installed, you can now start using it in your project. Include the necessary using
statements in your code files and begin working with PDFs using iTextSharp's functionality.
Merge PDFs to a Single PDF Document Using IronPDF
IronPDF provides a direct method to merge multiple PDF files into a single PDF. IronPDF offers great flexibility when it comes to merging PDF documents. The following sample code demonstrates the merging of PDFs into a single PDF file:
using IronPdf;
using System.Collections.Generic;
static void Main(string[] args)
{
string basePath = @"D:\PDFFiles\";
string[] pdfFiles = { "PdfFile_1.pdf", "PdfFile_2.pdf" };
// Create a list to hold the PDF documents to be merged
List<PdfDocument> docList = new List<PdfDocument>();
// Add each PDF to the list
foreach (string filename in pdfFiles)
{
docList.Add(new PdfDocument(basePath + filename));
}
// Merge the PDFs into one document
var mergedPDF = PdfDocument.Merge(docList);
// Save the merged PDF to the specified path
mergedPDF.SaveAs(basePath + "mergePDFbyIronPDF.pdf");
}
using IronPdf;
using System.Collections.Generic;
static void Main(string[] args)
{
string basePath = @"D:\PDFFiles\";
string[] pdfFiles = { "PdfFile_1.pdf", "PdfFile_2.pdf" };
// Create a list to hold the PDF documents to be merged
List<PdfDocument> docList = new List<PdfDocument>();
// Add each PDF to the list
foreach (string filename in pdfFiles)
{
docList.Add(new PdfDocument(basePath + filename));
}
// Merge the PDFs into one document
var mergedPDF = PdfDocument.Merge(docList);
// Save the merged PDF to the specified path
mergedPDF.SaveAs(basePath + "mergePDFbyIronPDF.pdf");
}
Imports IronPdf
Imports System.Collections.Generic
Shared Sub Main(ByVal args() As String)
Dim basePath As String = "D:\PDFFiles\"
Dim pdfFiles() As String = { "PdfFile_1.pdf", "PdfFile_2.pdf" }
' Create a list to hold the PDF documents to be merged
Dim docList As New List(Of PdfDocument)()
' Add each PDF to the list
For Each filename As String In pdfFiles
docList.Add(New PdfDocument(basePath & filename))
Next filename
' Merge the PDFs into one document
Dim mergedPDF = PdfDocument.Merge(docList)
' Save the merged PDF to the specified path
mergedPDF.SaveAs(basePath & "mergePDFbyIronPDF.pdf")
End Sub
The above code uses the IronPDF library to merge two PDF files ("PdfFile_1.pdf" and "PdfFile_2.pdf") located in the specified base path ("D:\PDFFiles"). It creates a list of PdfDocument
objects, adds the input PDFs to the list, merges them into a single PDF using PdfDocument.Merge
, and saves the merged PDF as "mergePDFbyIronPDF.pdf" in the same base path.
The following is the sample PDFs used in this example:
The following is the merged PDF file:
Merge Multiple PDF Files using iTextSharp
iTextSharp does not provide a direct method to merge PDF files. However, we can achieve it by opening each input PDF and adding its content to the output document. The following sample code merges PDF files into a single PDF document:
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
static void Main(string[] args)
{
// Create a new Document
Document doc = new Document();
string basePath = @"D:\PDFFiles\";
// Create a PdfCopy instance to copy pages from source PDFs
PdfCopy copy = new PdfCopy(doc, new FileStream(basePath + "mergePdf.pdf", FileMode.Create));
// Open the document for writing
doc.Open();
string[] pdfFiles = { "PdfFile_1.pdf", "PdfFile_2.pdf" };
// Loop through all the PDF files to be merged
foreach (string filename in pdfFiles)
{
// Read the content of each PDF
PdfReader reader = new PdfReader(basePath + filename);
// Add the document to PdfCopy
copy.AddDocument(reader);
// Close the reader
reader.Close();
}
// Close the Document
doc.Close();
}
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
static void Main(string[] args)
{
// Create a new Document
Document doc = new Document();
string basePath = @"D:\PDFFiles\";
// Create a PdfCopy instance to copy pages from source PDFs
PdfCopy copy = new PdfCopy(doc, new FileStream(basePath + "mergePdf.pdf", FileMode.Create));
// Open the document for writing
doc.Open();
string[] pdfFiles = { "PdfFile_1.pdf", "PdfFile_2.pdf" };
// Loop through all the PDF files to be merged
foreach (string filename in pdfFiles)
{
// Read the content of each PDF
PdfReader reader = new PdfReader(basePath + filename);
// Add the document to PdfCopy
copy.AddDocument(reader);
// Close the reader
reader.Close();
}
// Close the Document
doc.Close();
}
Imports iTextSharp.text
Imports iTextSharp.text.pdf
Imports System.IO
Shared Sub Main(ByVal args() As String)
' Create a new Document
Dim doc As New Document()
Dim basePath As String = "D:\PDFFiles\"
' Create a PdfCopy instance to copy pages from source PDFs
Dim copy As New PdfCopy(doc, New FileStream(basePath & "mergePdf.pdf", FileMode.Create))
' Open the document for writing
doc.Open()
Dim pdfFiles() As String = { "PdfFile_1.pdf", "PdfFile_2.pdf" }
' Loop through all the PDF files to be merged
For Each filename As String In pdfFiles
' Read the content of each PDF
Dim reader As New PdfReader(basePath & filename)
' Add the document to PdfCopy
copy.AddDocument(reader)
' Close the reader
reader.Close()
Next filename
' Close the Document
doc.Close()
End Sub
The above code using iTextSharp merges two PDF files ("PdfFile_1.pdf" and "PdfFile_2.pdf") from the specified base path ("D:\PDFFiles") into a single PDF named "mergePdf.pdf." It accomplishes this by opening each input PDF, adding its content to the output document, and then closing the documents. The above code will merge multiple PDFs into one PDF.
We have used two input files as follows:
The new file created by our code is as follows:
Conclusion
In comparison to iTextSharp, IronPDF emerges as the superior choice for merging PDF documents in C# applications. While both libraries are capable, IronPDF offers a more user-friendly interface, modern features like HTML to PDF conversion, clear licensing options, straightforward integration through NuGet, and active development, collectively simplifying the merging process, reducing development time, and ensuring a more reliable solution for PDF-related tasks. Its user-friendly interface, robust feature set, and continuous development make IronPDF the superior solution for merging PDFs in C#.
Frequently Asked Questions
How can I merge PDF files in C#?
You can merge PDF files in C# using IronPDF by creating a list of PdfDocument
objects and utilizing the PdfDocument.Merge
method to combine them into a single PDF document.
What are the benefits of using IronPDF for PDF manipulation?
IronPDF offers a user-friendly interface, modern features such as HTML to PDF conversion, interactive forms, and cross-platform compatibility, making it an efficient tool for PDF manipulation in C# applications.
How do I install a PDF library in Visual Studio for C# projects?
To install IronPDF in a Visual Studio C# project, use NuGet Package Manager by executing the command 'Install-Package IronPDF' in the Package Manager Console.
What are the differences between iTextSharp and IronPDF for merging PDFs?
iTextSharp requires manually adding content from each PDF document, whereas IronPDF provides a more straightforward solution with a direct method for merging PDFs, reducing development time and complexity.
Why should developers transition from iTextSharp to iText 7 or IronPDF?
Developers should transition because iTextSharp has reached its end-of-life, while iText 7 offers improved functionality. However, IronPDF provides even more modern features and ease of use, making it a superior choice for PDF manipulation.
Can IronPDF handle more than just merging PDF files?
Yes, IronPDF supports a wide range of PDF manipulations, including generating PDFs from scratch, converting HTML to PDF, modifying content, handling forms, and applying encryption.
What makes IronPDF a reliable choice for PDF manipulation in C#?
IronPDF is actively developed, offers modern features, and provides a user-friendly interface that simplifies PDF manipulation tasks, making it a reliable and efficient choice for developers.
How does IronPDF improve the process of merging PDFs compared to older libraries?
IronPDF improves the merging process by offering direct methods to combine PDF files, streamlining the integration with C# projects, and reducing the overall development time.
What considerations should developers keep in mind when choosing a PDF library for C#?
Developers should consider factors like ease of use, feature set, licensing options, compatibility, and active development support when choosing a PDF library for C# projects. IronPDF excels in these areas, making it a preferred choice.