产品比较

探索适用于 .NET 的 QuestPDF 水印最佳替代方案

乔尔迪·巴尔迪亚
乔尔迪·巴尔迪亚
2025年三月27日
分享:

介绍

水印是 PDF 文档中的一个重要元素,提供所有权、真实性或机密性的视觉指示。 它们可以阻止未经授权的使用,帮助保护知识产权,对企业和个人都至关重要。在本文中,我们将比较两个强大的库——IronPDFQuestPDF——重点关注它们在 C# 中为 PDF 文件添加水印的功能。

IronPDF 概览

破损图片 添加自 Pixabay,请从您的文件中选择或将图片拖放到此处。

主要功能

IronPDF 是一个强大的 PDF 库,使开发人员能够无缝地创建、编辑和操作 PDF 文档。 与水印相关的关键功能包括:

  • 灵活的水印功能:支持文本和图像水印,可以在字体、大小、颜色和透明度上进行自定义。
  • 轻松集成:兼容 .NET 应用程序,使其在现有项目中实现变得简单。
  • 丰富的格式选项:提供广泛的样式选项用于水印,增强文档的视觉吸引力。
  • 转换工具:HTMLURL图片等转换为PDF格式。

安装和设置

要开始使用IronPDF,请按照以下步骤操作:

  1. 通过在包管理器控制台中运行以下命令安装 IronPDF NuGet 包
Install-Package IronPdf
Install-Package IronPdf
'INSTANT VB TODO TASK: The following line uses invalid syntax:
'Install-Package IronPdf
$vbLabelText   $csharpLabel
  1. 在您的 C# 文件中添加必要的命名空间
using IronPdf;
using IronPdf;
Imports IronPdf
$vbLabelText   $csharpLabel

使用IronPDF向PDF文档添加水印

IronPDF 利用 HTML 字符串和 CSS 样式为您的 PDF 文档添加完全可自定义的水印。 水印工具可以接受任何HTML字符串,即使它包含图像和CSS样式等资产,并将其应用于PDF文件作为水印。

using IronPdf;
class Program
{
    static void Main()
    {
    PdfDocument pdf = PdfDocument.FromFile("existing.pdf");
        string watermark = "<img src='https://ironsoftware.com/img/products/ironpdf-logo-text-dotnet.svg'><h1 style='color:red'>CONFIDENTIAL</H1>";
        pdf.ApplyWatermark(watermark, rotation: 45, opacity: 80);               
    pdf.SaveAs("watermarked.pdf");
    }
}
using IronPdf;
class Program
{
    static void Main()
    {
    PdfDocument pdf = PdfDocument.FromFile("existing.pdf");
        string watermark = "<img src='https://ironsoftware.com/img/products/ironpdf-logo-text-dotnet.svg'><h1 style='color:red'>CONFIDENTIAL</H1>";
        pdf.ApplyWatermark(watermark, rotation: 45, opacity: 80);               
    pdf.SaveAs("watermarked.pdf");
    }
}
Imports IronPdf
Friend Class Program
	Shared Sub Main()
	Dim pdf As PdfDocument = PdfDocument.FromFile("existing.pdf")
		Dim watermark As String = "<img src='https://ironsoftware.com/img/products/ironpdf-logo-text-dotnet.svg'><h1 style='color:red'>CONFIDENTIAL</H1>"
		pdf.ApplyWatermark(watermark, rotation:= 45, opacity:= 80)
	pdf.SaveAs("watermarked.pdf")
	End Sub
End Class
$vbLabelText   $csharpLabel

输出 PDF 文件

破损图片 添加自 Pixabay,请从您的文件中选择或将图片拖放到此处。

如您所见,我们已创建一个新的字符串变量,其中包含我们的水印内容。 这是由一个包含标题和图像的HTML字符串组成的。 当我们使用ApplyWatermark方法时,我们可以设置自定义的旋转角度和不透明度。

如果您想查看更多高级示例以及IronPDF提供的其他功能,请务必查看指南

QuestPDF 概述

破损图片 添加自 Pixabay,请从您的文件中选择或将图片拖放到此处。

主要功能

QuestPDF 是一个现代PDF库,强调易于使用和对开发者友好的设计。 与水印相关的关键功能包括:

  • 声明式 API:使用流畅的 API,使开发人员能够以明确且直观的方式定义水印。
  • 高度可定制性:支持多种类型的水印,包括文本、图像和形状,提供广泛的定制选项。
  • 性能专注:针对速度和效率进行了优化,适合高容量PDF生成。

安装和设置

要安装QuestPDF,请按照以下步骤操作:

  1. 使用以下命令安装QuestPDF NuGet包
Install-Package QuestPDF
Install-Package QuestPDF
'INSTANT VB TODO TASK: The following line uses invalid syntax:
'Install-Package QuestPDF
$vbLabelText   $csharpLabel
  1. 在您的 C# 文件中包含必要的命名空间
using QuestPDF;
using QuestPDF;
Imports QuestPDF
$vbLabelText   $csharpLabel

使用QuestPDF添加水印

QuestPDF 对应用水印到 PDF 文件有不同的方法。 使用QuestPDF,这通过水印插槽(在背景和前景上)完成,水印插槽用于将水印内容添加到PDF的特定页面或所有页面。

using QuestPDF.Fluent;
using QuestPDF.Helpers;
using QuestPDF.Infrastructure;
public class WatermarkExample
{
    public static void Main()
    {
        QuestPDF.Settings.License = LicenseType.Community;
        Document.Create(container =>
        {
            container.Page(page =>
            {
                page.Margin(50);
                // Add a watermark
                page.Foreground().Element(watermark =>
                {
                    watermark.Text("DRAFT")
                        .FontSize(40)
                        .FontColor(Colors.Red.Medium)
                        .AlignLeft();
                });
                // Main content of the page
                page.Content().Element(ComposeContent);
            });
        })
        .GeneratePdf("watermarked_document.pdf");
    }
    private static IContainer ComposeContent(IContainer container)
    {
        // No need to return the container here; you can just define the layout.
        container.Column(column =>
        {
            column.Spacing(10);
            column.Item().Text("This is the main content of the PDF.");
            column.Item().Text("Add more content as needed.");
        });
        return container; // Return the container to maintain method signature.
    }
}
using QuestPDF.Fluent;
using QuestPDF.Helpers;
using QuestPDF.Infrastructure;
public class WatermarkExample
{
    public static void Main()
    {
        QuestPDF.Settings.License = LicenseType.Community;
        Document.Create(container =>
        {
            container.Page(page =>
            {
                page.Margin(50);
                // Add a watermark
                page.Foreground().Element(watermark =>
                {
                    watermark.Text("DRAFT")
                        .FontSize(40)
                        .FontColor(Colors.Red.Medium)
                        .AlignLeft();
                });
                // Main content of the page
                page.Content().Element(ComposeContent);
            });
        })
        .GeneratePdf("watermarked_document.pdf");
    }
    private static IContainer ComposeContent(IContainer container)
    {
        // No need to return the container here; you can just define the layout.
        container.Column(column =>
        {
            column.Spacing(10);
            column.Item().Text("This is the main content of the PDF.");
            column.Item().Text("Add more content as needed.");
        });
        return container; // Return the container to maintain method signature.
    }
}
Imports QuestPDF.Fluent
Imports QuestPDF.Helpers
Imports QuestPDF.Infrastructure
Public Class WatermarkExample
	Public Shared Sub Main()
		QuestPDF.Settings.License = LicenseType.Community
		Document.Create(Sub(container)
			container.Page(Sub(page)
				page.Margin(50)
				' Add a watermark
				page.Foreground().Element(Sub(watermark)
					watermark.Text("DRAFT").FontSize(40).FontColor(Colors.Red.Medium).AlignLeft()
				End Sub)
				' Main content of the page
				page.Content().Element(AddressOf ComposeContent)
			End Sub)
		End Sub).GeneratePdf("watermarked_document.pdf")
	End Sub
	Private Shared Function ComposeContent(ByVal container As IContainer) As IContainer
		' No need to return the container here; you can just define the layout.
		container.Column(Sub(column)
			column.Spacing(10)
			column.Item().Text("This is the main content of the PDF.")
			column.Item().Text("Add more content as needed.")
		End Sub)
		Return container ' Return the container to maintain method signature.
	End Function
End Class
$vbLabelText   $csharpLabel

输出 PDF 文档

破损图片 添加自 Pixabay,请从您的文件中选择或将图片拖放到此处。

在主方法中,我们首先创建一个页面边距为50单位的文档。 然后,我们创建要使用的水印,该水印是简单的文字“DRAFT”,呈红色,字体大小为40,并左对齐。 这种在PDF文档中应用水印的方法在设置上比IronPDF的简化方法更为严格和复杂。 使用QuestPDF时,您可能对水印的外观和位置控制较少。

水印功能比较

易用性

IronPDF 提供了一种简单明了的方法,其丰富的文档和示例使初学者很容易上手。 QuestPDF 通过其声明式 API 简化了流程,允许编写简洁代码,从而提高生产力。

定制选项

这两个库都提供了广泛的水印自定义选项。 IronPDF 允许对文本和图像进行详细样式设置,而 QuestPDF 提供了一种更灵活的元素排列方式,并支持复杂设计,这使其适用于创意应用。

性能

就性能而言,这两个库表现都不错,但QuestPDF可能由于其高效的设计而在速度上更具优势。 在实际场景中测试这些库,以确定哪个最适合您的特定用例,是一个明智的选择。

许可和定价

IronPDF 许可选项

IronPDF 在商业许可模式下运行。

QuestPDF 许可选项

QuestPDF 提供开源许可证并可选择商业支持。 这使其成为开发人员在寻找强大功能但不希望有巨大财务承诺时的一种具有成本效益的选择。

结论

![探索用 .NET 为 QuestPDF 加水印的最佳替代方案:图 5](/static-assets/pdf/blog/questpdf-add-watermark to-pdf-alternatives/questpdf-add-watermark to-pdf-alternatives-5.webp)

IronPDF 和 QuestPDF 都是功能强大的库,用于在 C# 中向 PDF 添加水印。 IronPDF 在详细的自定义选项和用户友好的方法方面表现出色,非常适合需要特定格式的用户。 另一方面,QuestPDF 以其现代的 API 设计和性能效率脱颖而出,吸引了寻求快速和直观解决方案的开发人员。

在需要广泛定制的情况下,IronPDF可能是首选。相反,QuestPDF非常适合优先考虑速度和易用性的项目。

🚀通过下载免费试用版亲自体验IronPDF,探索如何将您的C# PDF项目提升到一个新的水平!

乔尔迪·巴尔迪亚
乔尔迪·巴尔迪亚
软件工程师
Jordi 最擅长 Python、C# 和 C++,当他不在 Iron Software 运用技能时,他会进行游戏编程。作为产品测试、产品开发和研究的负责人之一,Jordi 为持续的产品改进增添了极大的价值。多样化的经验让他充满挑战和参与感,他说这是他在 Iron Software 工作中最喜欢的方面之一。Jordi 在佛罗里达州迈阿密长大,并在佛罗里达大学学习计算机科学和统计学。
下一步 >
探索为 PDFsharp 添加水印到 PDF 的最佳替代方案