PRODUCT COMPARISONS

Explore the Best Alternatives for Adding Images to PDFs in .NET

Regan Pun
Regan Pun
March 27, 2025
Share:

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.

Key Differences Between IronPDF and iTextSharp

  • 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.

Performance Considerations

  • 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.

Licensing and Pricing Models

  • 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.

Adding Images to PDFs Using IronPDF

Setting Up IronPDF in Your C# Project

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.

Adding Images to PDFs with IronPDF: Code Example

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");
    }
}

Explore the Best Alternatives for Adding Images to PDFs in .NET: Figure 1

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.

Customizing Image Placement and Size

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.

Adding Images to PDFs Using iTextSharp

Setting Up iTextSharp in Your C# Project

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.

Adding Images to PDFs with iTextSharp: Code Example

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();
    }
}

Explore the Best Alternatives for Adding Images to PDFs in .NET: Figure 2

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.

Customizing Image Placement and Size

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.

Performance Comparison: IronPDF vs iTextSharp

When it comes to performance, both libraries handle the task of adding images to PDFs, but they have some differences:

  • IronPDF is optimized for performance and can handle large documents with multiple images efficiently. It's faster at rendering PDFs, especially for documents that require heavy graphical content.
  • iTextSharp offers good performance, but it might struggle with very large PDFs or a large number of high-resolution images. While it's still quite efficient, some developers report slower rendering times compared to IronPDF, particularly in more complex use cases.

Licensing and Pricing Models

  • IronPDF: IronPDF offers a straightforward perpetual license that requires a one-time purchase. This is beneficial for developers who prefer not to deal with ongoing costs or open-source licensing requirements.
  • iTextSharp: iTextSharp follows the AGPL license, which is free to use for open-source projects but requires that the source code be made public if the library is used in a web application. For commercial use, iTextSharp offers a paid commercial license to avoid AGPL restrictions.

Conclusion

Explore the Best Alternatives for Adding Images to PDFs in .NET: Figure 3 - Comparison summary table

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.

Regan Pun
Software Engineer
Regan graduated from the University of Reading, with a BA in Electronic Engineering. Before joining Iron Software, his previous job roles had him laser-focused on single tasks; and what he most enjoys at Iron Software is the spectrum of work he gets to undertake, whether it’s adding value to sales, technical support, product development or marketing. He enjoys understanding the way developers are using the Iron Software library, and using that knowledge to continually improve documentation and develop the products.
< PREVIOUS
Explore the Best Alternatives for PDFsharp Add Watermark to PDF
NEXT >
Explore the Best PDF-to-Image Alternatives to PDFsharp