产品比较

iTextSharp C# HTML 转换为 PDF 的 .NET Core 替代方案

Kannaopat Udonpant
坎那帕·乌东攀
2025年二月19日
分享:

对于使用 PDF 的开发人员来说,拥有一个可靠的 PDF 生成和操作库至关重要。 在 .NET 生态系统中,有几十个 C# PDF 库可供选择,那么您如何选择最适合您需求的一个呢?

在 .NET 应用程序中使用 PDF 功能时,选择合适的库对于高效开发至关重要。 本文对两个著名的C# PDF库进行了详细的比较:IronPDFiText 7 (旧称 iTextSharp). 我们将探讨它们的功能、性能、许可以及适合各种项目需求的情况,以帮助您做出明智的决定。

为什么选择 .NET PDF 库?

PDF 在报告、发票和法律文件中被广泛使用,使得 PDF 生成和操作对于许多应用程序来说是必不可少的。 选择库时,需考虑的关键因素包括:

  • 集成的便利性 – 您可以多快实现 PDF 功能?
  • 支持将 HTML 转换为 PDF – 是否允许轻松转换网页内容?
  • 许可和成本 – 是免费的吗,还是需要商业许可证?
  • 功能集 – 它是否支持文本提取、签名或编辑?
  • 性能 – 生成或处理PDF的速度有多快?

IronPDF 和 iText7 概述

IronPDF 简介

IronPDF是一个专为.NET开发人员设计的商业PDF库。 它简化了PDF的生成、操作和转换,使其成为C#应用程序中最易于使用的库之一。

IronPDF 支持 .NET Core、.NET Framework 和 .NET Standard,确保在各种 .NET 环境中的兼容性。 其高度的跨平台兼容性使其成为在不同应用环境中工作的团队的理想选择,并且它与诸如Visual Studio之类的IDE完美集成。 除了其 .NET 版本外,IronPDF 还提供 Java、Python 和 Node.js 版本。

🔹 关键功能:

  • 内置 HTML 到 PDF 支持 – 转换网页, HTML,CSS和JavaScript转换为PDF,无需额外插件。
  • PDF编辑 - 通过修改现有的PDF添加文本、图像, 页眉和页脚.
  • PDF安全 – 加密PDF,设置密码保护并管理查看、打印或编辑的权限。
  • 水印和注释 - 轻松应用文本和图像水印、印章或评论到文档。
  • 表单填写和数据提取 – 填充交互式PDF 表单编程并提取表单数据。

    📌 最佳适用对象: 寻找简单、便捷的一体化解决方案的开发人员,无需额外添加组件或复杂的许可。

iText7简介

iText 7 是一个强大且灵活的 PDF 库,提供广泛的 PDF 操作功能,包括文档创建、加密和签名。 然而,其核心库本身并不支持HTML到PDF的转换。

🔹 关键功能:

  • 低级PDF自定义 – 提供对PDF结构、元数据和渲染的详细控制。
  • 可访问性与合规性: 生成 PDF/A、PDF/UA 和 PDF/X,以实现长期归档和可访问性合规。
  • HTML 到 PDF 转换: 付费的 pdfHTML 插件支持将 HTML 内容转换为 PDF。
  • Java 和 .NET 支持: 主要为 Java 设计,通过 iText 7 提供 C# 对 .NET 的支持。
  • PDF 表单管理: 创建和编辑 AcroForms 和 XFA 表单以实现交互式 PDF 表单。

    📌 最适合:需要高度可定制的PDF解决方案并愿意购买额外附加功能以扩展功能的开发人员。

功能和优势

在我们深入介绍功能及其代码示例之前,让我们先看看 IronPDF 和 iText 7 之间最大的功能差异之一,HTML 到 PDF 的转换

  • IronPDF 原生支持 HTML、CSS 和 JavaScript 渲染,无需任何额外组件。
  • 另一方面,iText 7 需要 pdfHTML add-on,这是一项需要商业许可的付费功能。 这增加了需要网页转PDF功能的开发者的成本。

    Itextsharp 1 related to 功能和优势

    HTML 转 PDF 比较流程图

    📌 底线: 如果您需要HTML到PDF转换,IronPDF 是更具成本效益的解决方案,因为它开箱即用就包含此功能。

IronPDF关键功能(附代码示例)

IronPDF 拥有丰富的功能集,可以处理 PDF 文档。 这些涵盖了从PDF创建到PDF操作和安全。 为了更清楚地了解这个库所提供的广泛功能,我们将查看几个精选的关键功能。

HTML到PDF转换:

转换 HTML 内容使用IronPDF强大的渲染引擎将内容转换为高质量的PDF文档。IronPDF的渲染器不仅仅是转换HTML内容,您还能够保留所有原始的CSS样式和JavaScript交互功能。

using IronPdf;

public class Program
{

    static void Main(string[] args)
    {

        ChromePdfRenderer renderer = new ChromePdfRenderer();
        PdfDocument pdf = renderer.RenderHtmlFileAsPdf("example.html");
        pdf.SaveAs("HtmlToPdf.pdf");
    }
}
using IronPdf;

public class Program
{

    static void Main(string[] args)
    {

        ChromePdfRenderer renderer = new ChromePdfRenderer();
        PdfDocument pdf = renderer.RenderHtmlFileAsPdf("example.html");
        pdf.SaveAs("HtmlToPdf.pdf");
    }
}
Imports IronPdf

Public Class Program

	Shared Sub Main(ByVal args() As String)

		Dim renderer As New ChromePdfRenderer()
		Dim pdf As PdfDocument = renderer.RenderHtmlFileAsPdf("example.html")
		pdf.SaveAs("HtmlToPdf.pdf")
	End Sub
End Class
$vbLabelText   $csharpLabel

输入 HTML

Itextsharp 2 related to HTML到PDF转换:

输入 HTML 内容

输出 PDF

Itextsharp 3 related to HTML到PDF转换:

使用 IronPDF 将 HTML 输出为 PDF

在此代码示例中,我们首先创建了一个新的 ChromePdfRenderer 实例,这使我们可以访问 IronPDF 用于将 HTML 渲染为 PDF 的强大渲染引擎。 然后,我们将 HTML 文件传递给 RenderHtmlFileAsPdf()方法,然后将HTML渲染为PDF,存储在PdfDocument`对象中。 最后,我们将 PDF 保存到指定的文件位置。

URL 转 PDF:

对于希望将URL内容转换为PDF的开发人员,IronPDF是您的不二之选。 使用此库,您可以通过 ChromePdfRenderer 渲染引擎创建像素完美的 PDF 文档,当渲染时,它会保持所有原始样式和布局。URL 到 PDF. 在这个例子中,我们将使用此URL,以展示IronPDF如何处理更复杂的CSS样式。

using IronPdf;
public class Program
{

    static void Main(string[] args)
    {

        ChromePdfRenderer renderer = new ChromePdfRenderer();

        PdfDocument pdf = renderer.RenderUrlAsPdf("https://www.apple.com");
        pdf.SaveAs("UrlToPdf.pdf");
    }
}
using IronPdf;
public class Program
{

    static void Main(string[] args)
    {

        ChromePdfRenderer renderer = new ChromePdfRenderer();

        PdfDocument pdf = renderer.RenderUrlAsPdf("https://www.apple.com");
        pdf.SaveAs("UrlToPdf.pdf");
    }
}
Imports IronPdf
Public Class Program

	Shared Sub Main(ByVal args() As String)

		Dim renderer As New ChromePdfRenderer()

		Dim pdf As PdfDocument = renderer.RenderUrlAsPdf("https://www.apple.com")
		pdf.SaveAs("UrlToPdf.pdf")
	End Sub
End Class
$vbLabelText   $csharpLabel

PDF 输出:

Itextsharp 4 related to URL 转 PDF:

使用 IronPDF 将 URL 转换为 PDF 输出

就像我们的 HTML 转 PDF 示例一样,使用 IronPDF 将任何 URL 转换为 PDF 的第一步是首先创建一个新的 ChromePdfRenderer 实例。 一旦该方法使用 RenderUrlAsPdf 将 URL 内容渲染为 PDF 格式,它会先将生成的 PDF 保存到一个新的 PdfDocument 对象中,然后我们使用 SaveAs 方法来保存 PDF。

PDF 签名:

通过应用以确保您的 PDF 文档的真实性数字签名到您的PDF文档。 开发人员可能会考虑应用数字签名的不同方法,例如使用安全证书对PDF进行数字签名,将手写签名的图像添加到PDF中,或将证书的图像直接盖印到PDF上。

using IronPdf;
using IronPdf.Signing;
using System.Security.Cryptography.X509Certificates;
using IronSoftware.Drawing;

public class Program
{

    static void Main(string[] args)
    {
        // Create PdfSignature object
        X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "your-password", X509KeyStorageFlags.Exportable);

        var sig = new PdfSignature(cert);
        sig.SignatureImage = new PdfSignatureImage("IronPdf.png", 0, new Rectangle(150, 100, 350, 250));

        // Sign and save PDF document
        sig.SignPdfFile("product_report.pdf");
    }
}
using IronPdf;
using IronPdf.Signing;
using System.Security.Cryptography.X509Certificates;
using IronSoftware.Drawing;

public class Program
{

    static void Main(string[] args)
    {
        // Create PdfSignature object
        X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "your-password", X509KeyStorageFlags.Exportable);

        var sig = new PdfSignature(cert);
        sig.SignatureImage = new PdfSignatureImage("IronPdf.png", 0, new Rectangle(150, 100, 350, 250));

        // Sign and save PDF document
        sig.SignPdfFile("product_report.pdf");
    }
}
Imports IronPdf
Imports IronPdf.Signing
Imports System.Security.Cryptography.X509Certificates
Imports IronSoftware.Drawing

Public Class Program

	Shared Sub Main(ByVal args() As String)
		' Create PdfSignature object
		Dim cert As New X509Certificate2("IronSoftware.pfx", "your-password", X509KeyStorageFlags.Exportable)

		Dim sig = New PdfSignature(cert)
		sig.SignatureImage = New PdfSignatureImage("IronPdf.png", 0, New Rectangle(150, 100, 350, 250))

		' Sign and save PDF document
		sig.SignPdfFile("product_report.pdf")
	End Sub
End Class
$vbLabelText   $csharpLabel

输出 PDF

Itextsharp 5 related to PDF 签名:

使用IronPDF生成数字签名输出

在这个例子中,我们加载了我们的证书对象,创建了一个签名的可视化表示,或者在我们的例子中是IronPDF图像,并创建了一个新的PdfSignature对象,该对象负责对PDF文档本身进行签名。 最后,我们使用SignPdfFile来签署并保存我们的PDF文档。

如果您想探索 IronPDF 提供的更多功能,请务必查看其信息丰富的内容功能页,或使用指南其中包含每个功能的深入代码示例。

iText7 主要功能(附代码示例)

iText7 提供了广泛的功能,以定制和增强您的 PDF 文档。 这款 PDF 库涵盖了多种 PDF 标准的广泛格式支持和先进的 PDF 操作功能。 然而,如前所述,iText7 可能需要额外的软件包才能执行某些与 PDF 相关的任务,例如 HTML 转 PDF。

HTML 转换为 PDF:

虽然iText7本身不能处理HTML到PDF的转换,但我们可以利用iText7商业许可下的付费附加组件pdfHTML,将IronPDF示例中使用的HTML文件转换为PDF文档。

using iText.Html2pdf;

public class Program
{

    static void Main(string[] args)
    {
        using (FileStream htmlSource = File.Open("example.html", FileMode.Open))
        using (FileStream pdf = File.Open("HtmlToPdfOutput.pdf", FileMode.Create))
        {
            ConverterProperties converterProperties = new ConverterProperties();
            HtmlConverter.ConvertToPdf(htmlSource, pdf, converterProperties);
            pdf.Close();
        }
    }
}
using iText.Html2pdf;

public class Program
{

    static void Main(string[] args)
    {
        using (FileStream htmlSource = File.Open("example.html", FileMode.Open))
        using (FileStream pdf = File.Open("HtmlToPdfOutput.pdf", FileMode.Create))
        {
            ConverterProperties converterProperties = new ConverterProperties();
            HtmlConverter.ConvertToPdf(htmlSource, pdf, converterProperties);
            pdf.Close();
        }
    }
}
Imports iText.Html2pdf

Public Class Program

	Shared Sub Main(ByVal args() As String)
		Using htmlSource As FileStream = File.Open("example.html", FileMode.Open)
		Using pdf As FileStream = File.Open("HtmlToPdfOutput.pdf", FileMode.Create)
			Dim converterProperties As New ConverterProperties()
			HtmlConverter.ConvertToPdf(htmlSource, pdf, converterProperties)
			pdf.Close()
		End Using
		End Using
	End Sub
End Class
$vbLabelText   $csharpLabel

输出 PDF

Itextsharp 6 related to HTML 转换为 PDF:

iText7 HTML 到 PDF 输出

在这个例子中,我们加载了HTML文件,并指定了保存渲染PDF的文件位置。 然后,使用 ConvertToPdf 方法,我们可以轻松地将 HTML 文件转换为 PDF 文档。

URL 转 PDF:

现在,是时候比较一下iText7在将URL转换为PDF时与IronPDF的表现如何。 为此,我们将使用与之前完全相同的 URL 以确保公平比较。

using System;
using System.Net.Http;
using System.IO;
using iText.Html2pdf;

public class Program
{
    public static async System.Threading.Tasks.Task Main(string[] args)
    {
        string url = "https://www.apple.com";  // Replace with your target URL
        string outputPdfPath = "output.pdf";

        try
        {
            // Download HTML content from the URL
            using (HttpClient client = new HttpClient())
            {
                string htmlContent = await client.GetStringAsync(url);

                // Convert HTML to PDF
                using (FileStream pdfStream = new FileStream(outputPdfPath, FileMode.Create))
                {
                    ConverterProperties properties = new ConverterProperties();
                    HtmlConverter.ConvertToPdf(htmlContent, pdfStream, properties);
                }
            }

            Console.WriteLine("PDF created successfully: " + outputPdfPath);
        }
        catch (Exception ex)
        {
            Console.WriteLine("Error: " + ex.Message);
        }
    }
}
using System;
using System.Net.Http;
using System.IO;
using iText.Html2pdf;

public class Program
{
    public static async System.Threading.Tasks.Task Main(string[] args)
    {
        string url = "https://www.apple.com";  // Replace with your target URL
        string outputPdfPath = "output.pdf";

        try
        {
            // Download HTML content from the URL
            using (HttpClient client = new HttpClient())
            {
                string htmlContent = await client.GetStringAsync(url);

                // Convert HTML to PDF
                using (FileStream pdfStream = new FileStream(outputPdfPath, FileMode.Create))
                {
                    ConverterProperties properties = new ConverterProperties();
                    HtmlConverter.ConvertToPdf(htmlContent, pdfStream, properties);
                }
            }

            Console.WriteLine("PDF created successfully: " + outputPdfPath);
        }
        catch (Exception ex)
        {
            Console.WriteLine("Error: " + ex.Message);
        }
    }
}
Imports System
Imports System.Net.Http
Imports System.IO
Imports iText.Html2pdf

Public Class Program
	Public Shared Async Function Main(ByVal args() As String) As System.Threading.Tasks.Task
		Dim url As String = "https://www.apple.com" ' Replace with your target URL
		Dim outputPdfPath As String = "output.pdf"

		Try
			' Download HTML content from the URL
			Using client As New HttpClient()
				Dim htmlContent As String = Await client.GetStringAsync(url)

				' Convert HTML to PDF
				Using pdfStream As New FileStream(outputPdfPath, FileMode.Create)
					Dim properties As New ConverterProperties()
					HtmlConverter.ConvertToPdf(htmlContent, pdfStream, properties)
				End Using
			End Using

			Console.WriteLine("PDF created successfully: " & outputPdfPath)
		Catch ex As Exception
			Console.WriteLine("Error: " & ex.Message)
		End Try
	End Function
End Class
$vbLabelText   $csharpLabel

输出 PDF

Itextsharp 7 related to URL 转 PDF:

iText7 URL 转换为 PDF 输出

如这里所见,iText7 将 URL 转换为 PDF 的方法更加手动和复杂。 首先,我们需要从URL下载HTML内容,然后按照HTML转PDF示例中的类似步骤,将我们的URL内容渲染为PDF文档并保存。 如您在输出图像中所见,iText7 未能保持大部分原始样式和布局,而 IronPDF 则不同。

PDF签名:

using System.Security.Cryptography.X509Certificates;
using iText.Kernel.Pdf;
using iText.Signatures;
using iText.Bouncycastle.Crypto;
using iText.Commons.Bouncycastle.Cert;
using iText.Commons.Bouncycastle.Crypto;
using Org.BouncyCastle.Pkcs;
using Org.BouncyCastle.Crypto;
using iText.Bouncycastle.X509;
using iText.Kernel.Crypto;

public partial class Program
{
    static void Main(string[] args)
    {
        string inputPdf = "input.pdf";       // PDF to be signed
        string outputPdf = "signed_output.pdf";  // Signed PDF output
        string pfxFile = "IronSoftware.pfx";  // Path to your PFX certificate
        string password = "Passw0rd";   // Password for PFX file

        try
        {
            // Load your certificate
            Pkcs12Store ks = new Pkcs12StoreBuilder().Build();
            using (FileStream fs = new FileStream(pfxFile, FileMode.Open, FileAccess.Read))
            {
                ks.Load(fs, password.ToCharArray());
            }

            string? alias = null;
            foreach (string al in ks.Aliases)
            {
                if (ks.IsKeyEntry(al))
                {
                    alias = al;
                    break;
                }
            }

            if (alias == null)
            {
                throw new Exception("Alias not found in the PFX file.");
            }

            ICipherParameters pk = ks.GetKey(alias).Key;
            X509CertificateEntry[] chain = ks.GetCertificateChain(alias);
            X509Certificate2 cert = new X509Certificate2(chain[0].Certificate.GetEncoded());

            // Convert BouncyCastle certificate to iText certificate
            var itextCertChain = new IX509Certificate[chain.Length];
            for (int i = 0; i < chain.Length; i++)
            {
                itextCertChain[i] = new X509CertificateBC(chain[i].Certificate);
            }

            // Create output PDF with signed content
            using (PdfReader reader = new PdfReader(inputPdf))
            using (FileStream os = new FileStream(outputPdf, FileMode.Create, FileAccess.Write))
            {
                PdfSigner signer = new PdfSigner(reader, os, new StampingProperties().UseAppendMode());

                // Set up the external signature (private key + digest algorithm)
                IPrivateKey iTextPrivateKey = new PrivateKeyBC(pk);
                IExternalSignature pks = new PrivateKeySignature(iTextPrivateKey, DigestAlgorithms.SHA256);
                IExternalDigest digest = new BouncyCastleDigest();

                // Perform the signing (detached signature)
                signer.SignDetached(digest, pks, itextCertChain, null, null, null, 0, PdfSigner.CryptoStandard.CMS);
            }

            Console.WriteLine($"PDF digitally signed successfully: {outputPdf}");
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error signing PDF: {ex.Message}");
        }
    }
}
using System.Security.Cryptography.X509Certificates;
using iText.Kernel.Pdf;
using iText.Signatures;
using iText.Bouncycastle.Crypto;
using iText.Commons.Bouncycastle.Cert;
using iText.Commons.Bouncycastle.Crypto;
using Org.BouncyCastle.Pkcs;
using Org.BouncyCastle.Crypto;
using iText.Bouncycastle.X509;
using iText.Kernel.Crypto;

public partial class Program
{
    static void Main(string[] args)
    {
        string inputPdf = "input.pdf";       // PDF to be signed
        string outputPdf = "signed_output.pdf";  // Signed PDF output
        string pfxFile = "IronSoftware.pfx";  // Path to your PFX certificate
        string password = "Passw0rd";   // Password for PFX file

        try
        {
            // Load your certificate
            Pkcs12Store ks = new Pkcs12StoreBuilder().Build();
            using (FileStream fs = new FileStream(pfxFile, FileMode.Open, FileAccess.Read))
            {
                ks.Load(fs, password.ToCharArray());
            }

            string? alias = null;
            foreach (string al in ks.Aliases)
            {
                if (ks.IsKeyEntry(al))
                {
                    alias = al;
                    break;
                }
            }

            if (alias == null)
            {
                throw new Exception("Alias not found in the PFX file.");
            }

            ICipherParameters pk = ks.GetKey(alias).Key;
            X509CertificateEntry[] chain = ks.GetCertificateChain(alias);
            X509Certificate2 cert = new X509Certificate2(chain[0].Certificate.GetEncoded());

            // Convert BouncyCastle certificate to iText certificate
            var itextCertChain = new IX509Certificate[chain.Length];
            for (int i = 0; i < chain.Length; i++)
            {
                itextCertChain[i] = new X509CertificateBC(chain[i].Certificate);
            }

            // Create output PDF with signed content
            using (PdfReader reader = new PdfReader(inputPdf))
            using (FileStream os = new FileStream(outputPdf, FileMode.Create, FileAccess.Write))
            {
                PdfSigner signer = new PdfSigner(reader, os, new StampingProperties().UseAppendMode());

                // Set up the external signature (private key + digest algorithm)
                IPrivateKey iTextPrivateKey = new PrivateKeyBC(pk);
                IExternalSignature pks = new PrivateKeySignature(iTextPrivateKey, DigestAlgorithms.SHA256);
                IExternalDigest digest = new BouncyCastleDigest();

                // Perform the signing (detached signature)
                signer.SignDetached(digest, pks, itextCertChain, null, null, null, 0, PdfSigner.CryptoStandard.CMS);
            }

            Console.WriteLine($"PDF digitally signed successfully: {outputPdf}");
        }
        catch (Exception ex)
        {
            Console.WriteLine($"Error signing PDF: {ex.Message}");
        }
    }
}
Imports System.Security.Cryptography.X509Certificates
Imports iText.Kernel.Pdf
Imports iText.Signatures
Imports iText.Bouncycastle.Crypto
Imports iText.Commons.Bouncycastle.Cert
Imports iText.Commons.Bouncycastle.Crypto
Imports Org.BouncyCastle.Pkcs
Imports Org.BouncyCastle.Crypto
Imports iText.Bouncycastle.X509
Imports iText.Kernel.Crypto

Partial Public Class Program
	Shared Sub Main(ByVal args() As String)
		Dim inputPdf As String = "input.pdf" ' PDF to be signed
		Dim outputPdf As String = "signed_output.pdf" ' Signed PDF output
		Dim pfxFile As String = "IronSoftware.pfx" ' Path to your PFX certificate
		Dim password As String = "Passw0rd" ' Password for PFX file

		Try
			' Load your certificate
			Dim ks As Pkcs12Store = (New Pkcs12StoreBuilder()).Build()
			Using fs As New FileStream(pfxFile, FileMode.Open, FileAccess.Read)
				ks.Load(fs, password.ToCharArray())
			End Using

'INSTANT VB WARNING: Nullable reference types have no equivalent in VB:
'ORIGINAL LINE: string? alias = null;
			Dim [alias] As String = Nothing
			For Each al As String In ks.Aliases
				If ks.IsKeyEntry(al) Then
					[alias] = al
					Exit For
				End If
			Next al

			If [alias] Is Nothing Then
				Throw New Exception("Alias not found in the PFX file.")
			End If

			Dim pk As ICipherParameters = ks.GetKey([alias]).Key
			Dim chain() As X509CertificateEntry = ks.GetCertificateChain([alias])
			Dim cert As New X509Certificate2(chain(0).Certificate.GetEncoded())

			' Convert BouncyCastle certificate to iText certificate
			Dim itextCertChain = New IX509Certificate(chain.Length - 1){}
			For i As Integer = 0 To chain.Length - 1
				itextCertChain(i) = New X509CertificateBC(chain(i).Certificate)
			Next i

			' Create output PDF with signed content
			Using reader As New PdfReader(inputPdf)
			Using os As New FileStream(outputPdf, FileMode.Create, FileAccess.Write)
				Dim signer As New PdfSigner(reader, os, (New StampingProperties()).UseAppendMode())

				' Set up the external signature (private key + digest algorithm)
				Dim iTextPrivateKey As IPrivateKey = New PrivateKeyBC(pk)
				Dim pks As IExternalSignature = New PrivateKeySignature(iTextPrivateKey, DigestAlgorithms.SHA256)
				Dim digest As IExternalDigest = New BouncyCastleDigest()

				' Perform the signing (detached signature)
				signer.SignDetached(digest, pks, itextCertChain, Nothing, Nothing, Nothing, 0, PdfSigner.CryptoStandard.CMS)
			End Using
			End Using

			Console.WriteLine($"PDF digitally signed successfully: {outputPdf}")
		Catch ex As Exception
			Console.WriteLine($"Error signing PDF: {ex.Message}")
		End Try
	End Sub
End Class
$vbLabelText   $csharpLabel

输出 PDF

Itextsharp 8 related to PDF签名:

iText7 数字签名输出

如您所见,虽然iText7能够对PDF文档进行数字签名,但这一过程往往比IronPDF要复杂得多。 此代码加载 PFX 证书并使用它对 PDF 进行数字签名。 它提取私钥和证书,设置签名者,并向PDF添加分离签名,然后保存已签名的文档。

竞争分析

性能和可用性

IronPDF的主要优势:

IronPDF以其易用性和优化的高性能而闻名,提供了一个更简单的API,简化了诸如HTML转PDF等常见任务。 它提供了高级方法,可以抽象复杂的PDF处理任务,使开发人员能够以最少的代码生成、编辑和操作PDF。 对于多线程或大规模文档处理,IronPDF支持并行执行。

  • 易于使用的API – 高级方法简化了常见任务,如HTML到PDF的转换。
  • 需要最少的设置 – 可轻松集成到.NET项目中。
  • 内置并行执行 – 针对处理大批量PDF生成和转换进行了优化。
  • 简化 API – 需要更少的代码行即可实现结果。

iText 7 - 强大但复杂

另一方面,iText 7 提供了更详细和颗粒化的控制,这对需要广泛自定义的开发人员来说可能是有利的。 它提供了用于处理低级PDF操作的强大API。然而,由于其复杂性,iText 7通常需要更多的代码才能实现与IronPDF相似的结果。

  • 细粒度的 PDF 控制 - 适用于需要严格合规的企业应用程序(例如,PDF/A、PDF/UA、数字签名).
  • 高度可定制 – 为高级用例提供低级别PDF操作
  • 学习曲线较陡 – 与IronPDF相比,需要更多的设置和配置。
  • 代码密集度更高 – 常见任务通常需要更长的实现

许可和成本

在为 .NET 项目选择 PDF 库时,许可和成本考虑至关重要。 IronPDFiText 7遵循不同的许可模式,选择合适的模式取决于您的项目需求、预算和合规性要求。

IronPDF 许可和成本

IronPDF 采用商业许可模式,这意味着虽然它为商业许可提供免费试用,并且在开发和评估时免费,但在全面生产使用时需要付费许可证。定价透明,并取决于使用规模、开发人员数量和项目类型等因素。

🔹 IronPDF 许可:

  • 商业许可模式(没有开源限制).
  • 简单定价 基于 开发者或团队许可
  • 无需为HTML到PDF转换、PDF安全性或其他核心功能支付额外费用
  • 最适合需要简单且具成本效益的PDF解决方案的企业。

    📌 底线: IronPDF 将所有主要功能包含在一个许可证中,是团队和企业的经济实惠选择。

iText7 许可和费用

iText7 采用双重许可模式,包括:

  1. AGPL(GNU Affero通用公共许可证)** – 对于开源项目免费,但要求使用 iText7 的整个项目必须是开源的并符合 AGPL 许可。 这意味着对项目所作的任何修改或添加也必须公开共享。

  2. 商业许可证 – 适用于任何不希望公开其源代码的专有软件或商业应用程序。 定价结构根据使用情况、支持水平和部署规模而有所不同。

    对于希望将iText 7集成到专有软件中的公司,商业许可证是必需的。 成本可能很高,尤其是针对企业级解决方案,因为其定价是按照每位开发人员计算的,但它提供专业支持并确保合法合规。

    🔹 为什么 iText 7 可能更昂贵:

    • 按开发人员定价 – 每个开发人员需要单独的许可证,从而增加团队的总成本。
    • 基本功能需要昂贵的附加组件

    • pdfHTML(已付款)– 必须用于HTML 转 PDF 转换

    • pdfOCR(已付款)– 需要用于从图像中识别文本

    • pdfCalligraph(已付款)提升文本渲染和字体支持。

    • pdfRender(已付款)– 添加PDF 转图像转换
    • pdf2Data(已付款)从 PDF 中提取结构化数据。
    • 当需要多个功能和开发人员时,企业成本可能会迅速增加。

    📌 结论: 如果您的团队需要多名开发人员以及像HTML到PDF和OCR这样的关键功能,iText 7可能会比IronPDF显著更昂贵,而IronPDF提供这些功能且无额外费用。

用例场景

小型项目与企业项目

对于需要快速实现PDF功能且配置要求较少的小型到中型项目而言,IronPDF 是一个引人注目的选择,因为它拥有用户友好的 API 和全面的功能集。 需要广泛定制和遵循特定 PDF 标准的企业级项目可能会从 iText7 的高级功能中受益,然而,IronPDF 由于其高性能、灵活的许可选项和可用性,也被证明是这一层次工作的强有力候选者。

学术和商业用途

在学术环境或开源项目中,iText 7 的 AGPL 许可证允许免费使用,前提是项目的许可证兼容。 对于商业应用,IronPDF和iText 7都需要购买商业许可证。 建议查看每个库的许可条款,以确保符合您项目的目标。

结论

为您的 .NET 项目选择合适的 PDF 库是一个关键的决定,取决于易用性、功能集和许可需求等因素。 IronPDF 和 iText 7 都提供强大的 PDF 功能,但它们适用于不同的需求。 除了这两个库以外,Aspose、Syncfusion 和 PDFSharp 等竞争对手都提供有竞争力的 .NET PDF 库。 然而,IronPDF 凭借其易于使用的 API、全面的功能集以及成本效益,始终在 PDF 行业中处于领先地位。

以下是我们总结的一个有力论据,说明为什么IronPDF是满足所有.NET PDF库需求的绝佳选择。

IronPDF与iText7对比概述

IronPDF与iText7比较总结

IronPDF的优势

  • 易用性:IronPDF以简单性为设计重点,是需要快速将PDF功能集成到.NET应用程序中的开发人员的理想选择。 其直观的 API 减少了学习曲线并加快了开发时间。
  • 全面的文档和支持: IronPDF 提供详尽的文档和快速响应的客户支持,确保开发人员可以快速上手并有效地解决问题。
  • 无缝HTML到PDF的转换: IronPDF擅长将包括CSS和JavaScript在内的HTML转换为高质量的PDF。 这对于需要从基于网络的内容动态生成PDF的项目特别有利。
  • 商业许可: 对于商业应用,IronPDF 提供灵活的许可选项,确保合规同时不受开源许可证可能带来的限制。

iText 限制

  • 复杂性:虽然iText 7提供了高级功能和可定制性,但对于新接触PDF操作的开发人员来说,其API可能比较复杂。 这可能会导致与 IronPDF 的更简单方法相比,常见任务的开发时间更长。
  • 商业使用的许可成本: iText 7 的 AGPL 许可证要求任何衍生作品必须开源,除非您购买商业许可证。 这可能是无法遵守AGPL条款的专有应用程序的限制。
  • Java特性: 虽然iText 7适用于.NET,但由于其在Java生态系统中的起源,有时可能让C#开发人员觉得不太本土化,尤其是在处理跨平台问题或与基于Java的工具集成时。

最后的想法

如果您的项目需要快速生成 PDF,尤其是从网页内容中生成,并且您正在寻找一个易于使用的解决方案,IronPDF更有可能是更好的选择。但是,如果您的应用程序需要高级 PDF 操作或严格遵守 PDF 标准,并需要灵活的广泛定制,iText7可能更适合。 考虑您的项目特定需求和许可证限制,以确定最适合您的库。

🎯 立即试用 IronPDF: 下载免费试用开始探索 IronPDF 强大功能!

立即在您的项目中开始使用IronPDF,并享受免费试用。

第一步:
green arrow pointer

Kannaopat Udonpant
坎那帕·乌东攀
软件工程师
在成为软件工程师之前,Kannapat 从日本北海道大学完成了环境资源博士学位。在攻读学位期间,Kannapat 还成为了生物生产工程系车辆机器人实验室的成员。2022年,他利用自己的 C# 技能加入了 Iron Software 的工程团队,专注于 IronPDF。Kannapat 珍视他的工作,因为他能直接向编写 IronPDF 大部分代码的开发者学习。除了同伴学习,Kannapat 还享受在 Iron Software 工作的社交方面。不写代码或文档时,Kannapat 通常在 PS5 上玩游戏或重看《最后生还者》。
< 前一页
IronPDF和EvoPdf:比较
下一步 >
Syncfusion PDF 查看器 HTML 转 PDF 比较