Test in production without watermarks.
Works wherever you need it to.
Get 30 days of fully functional product.
Have it up and running in minutes.
Full access to our support engineering team during your product trial
When working with PDF files in a .NET environment, adding images to documents is a common requirement for many applications. Whether you’re generating invoices, reports, or custom documents, the ability to embed images into PDFs is essential. Two of the most popular PDF libraries in C# are IronPDF and iTextSharp. In this article, we’ll compare both libraries on their ability to add images to PDFs, considering ease of use, performance, licensing, and features.
IronPDF: IronPDF makes adding images to PDFs easy, with built-in support for embedding both local and remote images. Its API allows fine control over the image's position, original width, and scaling within the document.
iTextSharp: iTextSharp also offers functionality for embedding images. It provides a flexible and powerful API that can handle various image types, including JPG and PNG. However, it may require more lines of code for customization, especially when positioning or resizing images.
IronPDF: Known for its efficiency, IronPDF handles large PDFs and images smoothly. Its performance shines when generating or modifying PDFs with embedded graphics, making it an excellent choice for server applications that need high performance.
iTextSharp: While iTextSharp is a reliable library, it can be slower in certain situations, especially with large files or complex image operations. However, it's still suitable for most applications.
IronPDF: IronPDF offers a perpetual license, meaning a one-time purchase covers usage indefinitely. This is ideal for developers who want to avoid recurring subscription costs.
iTextSharp: iTextSharp operates under the AGPL (Affero General Public License) for open-source use, which means you must release your source code if you use it in your projects, or you can opt for a commercial license to avoid this.
Before adding images, you need to install IronPDF in your latest version of C# or Visual Basic project. You can do this via NuGet:
Install-Package IronPdf
Install-Package IronPdf
Once installed, you can start adding images to your PDF documents.
The following code example demonstrates how to add an image to a PDF using IronPDF:
using IronPdf;
using IronPdf.Editing;
class Program
{
public static void Main(string[] args)
{
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
ImageStamper stamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"));
pdf.ApplyStamp(stamper);
pdf.SaveAs("output.pdf");
}
}
using IronPdf;
using IronPdf.Editing;
class Program
{
public static void Main(string[] args)
{
ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
ImageStamper stamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"));
pdf.ApplyStamp(stamper);
pdf.SaveAs("output.pdf");
}
}
In this example, we first use the ChromePdfRenderer class to render a new DOC from an HTML string. Then, using IronPDF's image stamping tool, we create a new image from the provided string URL and apply it to the PDF. This example demonstrates how IronPDF can be used to add images to your PDF page in just a few lines of code.
IronPDF allows for extensive customization when it comes to image placement. You can specify where on the page you want the image by setting the alignment and offset of the image through the stamping tool's positioning feature.
To get started with iTextSharp, you need to install the library via NuGet:
Install-Package itext7
Install-Package itext7
Once set up, you can proceed to add images to your PDFs.
Below is an example of how to insert an image using iTextSharp:
using iText.Kernel.Pdf;
using iText.Layout;
using iText.Layout.Element;
using iText.IO.Image;
class Program
{
public static void Main(string[] args)
{
var pdfWriter = new PdfWriter("output.pdf");
var pdfDocument = new iText.Kernel.Pdf.PdfDocument(pdfWriter);
var document = new Document(pdfDocument);
ImageData imageData = ImageDataFactory.Create("iText.png");
Image image = new Image(imageData);
image.SetFixedPosition(50, 100); // x, y coordinates
image.ScaleToFit(200, 200); // Width, Height
document.Add(image);
document.Close();
}
}
using iText.Kernel.Pdf;
using iText.Layout;
using iText.Layout.Element;
using iText.IO.Image;
class Program
{
public static void Main(string[] args)
{
var pdfWriter = new PdfWriter("output.pdf");
var pdfDocument = new iText.Kernel.Pdf.PdfDocument(pdfWriter);
var document = new Document(pdfDocument);
ImageData imageData = ImageDataFactory.Create("iText.png");
Image image = new Image(imageData);
image.SetFixedPosition(50, 100); // x, y coordinates
image.ScaleToFit(200, 200); // Width, Height
document.Add(image);
document.Close();
}
}
In this example, the image is added at coordinates (50, 100) and scaled to fit within the 200x200 pixel area. The PdfWriter is used to create the output file, making it possible to manipulate the pdfwriter writer functionality for handling images.
iTextSharp provides more control over the image's positioning and size. You can scale the image while maintaining the aspect ratio or stretch it to specific dimensions. The SetFixedPosition method gives precise control over placement, and you can also manipulate the image’s alignment and rotation.
When it comes to performance, both libraries handle the task of adding images to PDFs, but they have some differences:
Both IronPDF and iTextSharp offer powerful tools for adding images to PDFs in C#, but they each have distinct advantages. IronPDF stands out with its ease of use, performance, and licensing flexibility, making it the ideal choice for developers who want to handle complex PDFs and images with less code. It also provides better scalability for large PDFs and offers a one-time purchase licensing model, avoiding the need for recurring costs or complicated open-source licensing restrictions.
On the other hand, iTextSharp can be a good choice for open-source projects, though it may require more code to achieve the same results and might face performance issues with larger PDFs.
Ready to simplify your PDF image handling? IronPDF offers a seamless and efficient experience for adding images to your PDFs with just a few lines of code. Try IronPDF and see how easy it is to integrate image support into your C# projects. With IronPDF, you’ll save time, reduce complexity, and enhance your PDF generation workflow.