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
Adding watermarks to PDFs is a common requirement for document security, branding, and version control. Whether marking documents as confidential, branding official reports, or preventing unauthorized reproduction, watermarking is an essential feature.
In C#, developers have multiple libraries to choose from, with IronPDF and PDFSharp being two of the most popular options. However, their approaches, ease of use, performance, and licensing structures differ significantly. This article provides a detailed comparison between IronPDF and PDFsharp for adding watermarks to existing PDFs, offering insights into their functionalities, implementation processes, and customization capabilities.
By the end of this article, you will have a clear understanding of which library best suits your project’s needs based on ease of use, performance, and feature availability.
A watermark is a graphical or textual overlay on a document that serves as an identifier, deterrent, or branding element. Watermarks can be visible or invisible, depending on their purpose.
Broken image Add from Pixabay, select from your files or drag and drop an image here.
IronPDF is a premium, feature-rich .NET library designed to streamline PDF handling. It is especially useful for developers looking for easy implementation of PDF manipulation tasks, including watermarking.
Key Features:
Broken image Add from Pixabay, select from your files or drag and drop an image here.
PDFsharp is an open-source library that allows developers to create, edit, and manipulate PDFs in C#. While it is highly flexible, watermarking requires more manual effort compared to IronPDF.
Key Features:
IronPDF provides a simple API that enables developers to apply watermarks efficiently with just a few lines of code, making it easy to streamline your PDF watermarking tasks efficiently, without any complex or manual setups. IronPDF's watermark tool can use HTML/CSS strings for the watermark, as you will see below, giving you full control over how your watermark will appear.
using IronPdf;
const string filename = "existing.pdf";
PdfDocument pdf = PdfDocument.FromFile(filename);
string watermark = "<h1 style='color:red'>Confidential!</h1>";
pdf.ApplyWatermark(watermark);
pdf.SaveAs("watermarked.pdf");
using IronPdf;
const string filename = "existing.pdf";
PdfDocument pdf = PdfDocument.FromFile(filename);
string watermark = "<h1 style='color:red'>Confidential!</h1>";
pdf.ApplyWatermark(watermark);
pdf.SaveAs("watermarked.pdf");
In this code example, we see just how easy it is to apply a watermark to your existing PDF files with IronPDF. Here, we have loaded in the existing PDF using the FromFile method. Then, we create a simple string format watermark, and apply it to the PDF using ApplyWatermark. As you can see in the output image, this has added a simple text string "Confidential" as a watermark on our PDF.
using IronPdf;
PdfDocument pdf = PdfDocument.FromFile("existing.pdf");
string watermark = "<img src='https://ironsoftware.com/img/products/ironpdf-logo-text-dotnet.svg'>";
pdf.ApplyWatermark(watermark, rotation: 45, opacity: 80);
pdf.SaveAs("watermarked.pdf");
using IronPdf;
PdfDocument pdf = PdfDocument.FromFile("existing.pdf");
string watermark = "<img src='https://ironsoftware.com/img/products/ironpdf-logo-text-dotnet.svg'>";
pdf.ApplyWatermark(watermark, rotation: 45, opacity: 80);
pdf.SaveAs("watermarked.pdf");
Adding an image as a watermark is just as easy as adding text, as they both use the same method. Much like in the text example, we simply create a new watermark string variable, containing the content we want to use as the watermark (in this case our image), and we apply it like before. This time, we have added in a customized rotation transformation and opacity.
This approach overlays an image watermark at a specified position, allowing for custom placement and transparency.
PDFsharp requires developers to manually render text and images using its GDI+ drawing API. To watermark an existing PDF file, create an XGraphics object for drawing and apply the desired content.
using PdfSharp.Pdf;
using PdfSharp.Drawing;
using PdfSharp.Pdf.IO;
const string filename = "existing.pdf";
var document = PdfReader.Open(filename, PdfDocumentOpenMode.Modify);
foreach (var page in document.Pages)
{
var gfx = XGraphics.FromPdfPage(page); // get an XGraphics object
gfx.TranslateTransform(page.Width / 2, page.Height / 2);
gfx.RotateTransform(Math.Atan(page.Height / page.Width)); // Rotate for diagonal watermark
var font = new XFont("Arial", 40);
var brush = new XSolidBrush(XColor.FromArgb(128, XColors.Red));
gfx.DrawString("WATERMARK", font, brush, new XPoint(0, 0)); // Drawing beneath the existing content
}
document.Save("watermarked.pdf");
using PdfSharp.Pdf;
using PdfSharp.Drawing;
using PdfSharp.Pdf.IO;
const string filename = "existing.pdf";
var document = PdfReader.Open(filename, PdfDocumentOpenMode.Modify);
foreach (var page in document.Pages)
{
var gfx = XGraphics.FromPdfPage(page); // get an XGraphics object
gfx.TranslateTransform(page.Width / 2, page.Height / 2);
gfx.RotateTransform(Math.Atan(page.Height / page.Width)); // Rotate for diagonal watermark
var font = new XFont("Arial", 40);
var brush = new XSolidBrush(XColor.FromArgb(128, XColors.Red));
gfx.DrawString("WATERMARK", font, brush, new XPoint(0, 0)); // Drawing beneath the existing content
}
document.Save("watermarked.pdf");
Broken image Add from Pixabay, select from your files or drag and drop an image here.
This implementation manually draws a watermark on each page, requiring precise positioning and customization. While it's capable of handling the task with a similar output to the IronPDF example, PDFsharp requires more code, and has a more complex method, to handle applying text watermarks to existing content or new PDF files.
using PdfSharp.Pdf;
using PdfSharp.Drawing;
var document = PdfReader.Open("sample.pdf", PdfDocumentOpenMode.Modify);
XImage watermark = XImage.FromFile("watermark.png");
foreach (var page in document.Pages)
{
XGraphics gfx = XGraphics.FromPdfPage(page);
gfx.DrawImage(watermark, 50, 100, watermark.PixelWidth / 2, watermark.PixelHeight / 2);
}
document.Save("watermarked.pdf");
using PdfSharp.Pdf;
using PdfSharp.Drawing;
var document = PdfReader.Open("sample.pdf", PdfDocumentOpenMode.Modify);
XImage watermark = XImage.FromFile("watermark.png");
foreach (var page in document.Pages)
{
XGraphics gfx = XGraphics.FromPdfPage(page);
gfx.DrawImage(watermark, 50, 100, watermark.PixelWidth / 2, watermark.PixelHeight / 2);
}
document.Save("watermarked.pdf");
This method places an image watermark, but unlike IronPDF, opacity must be handled separately. Much like with the text watermark example, applying an image-based watermark onto an existing PDF with PDFsharp requires a more elaborate, complex setup when compared to IronPDF's streamlined watermarking API.
For developers who need an easy and efficient way to watermark PDFs, IronPDF is the superior choice due to its user-friendly API and built-in features. However, if budget constraints are a concern and you don’t mind writing additional code, PDFSharp is a solid open-source alternative. Ultimately, the best choice depends on your project requirements, coding expertise, and available resources.
🚀Try IronPDF out for yourself by downloading the free trial and exploring how it can take your C# PDF projects to the next level today!