产品比较

Syncfusion PDF 查看器 HTML 转 PDF 比较

发布 2024年八月11日
分享:

介绍

一个好的、简单明了的 PDF 操作工具可以简化与 PDF 生成和修改相关的许多流程和任务。 在 .NET Framework 中,IronPDF 和 Syncfusion 是两个功能强大的库,用于创建、编辑和转换 PDF 文档,而无需依赖 Adobe。 本文将根据 IronPdf 和 Syncfusion 的各自特点、文档和许可费用对其进行比较。

IronPDF 和 Syncfusion PDF for .NET Core 概述

IronPDF 是专为 .NET 开发人员设计的功能丰富的综合性 PDF 库,在 .NET Core 应用程序中运行良好。 它提供了从各种来源(包括 HTML 文件、图像文件和 URL)创建、编辑和渲染 PDF 文档的功能。

探索 IronPDF 功能Node.js 因其易于集成和支持 CSS3、HTML5 和 JavaScript 等现代网络标准的广泛功能集而被广泛使用。 该库有别于其他库的一点是,它只需几行代码就能生成像素完美的 PDF,因此即使不熟悉 PDF 等复杂文件格式的人也能使用。

Syncfusion .NET Core PDF 库为 .NET 应用程序提供了一系列 PDF 操作功能。 它使开发人员能够以编程方式创建、阅读和编辑 PDF 文档。 虽然 Syncfusion 提供了坚实的功能集,但与 IronPDF 相比,它可能需要更陡峭的学习曲线。 该库以其丰富的文档和社区支持而闻名,是寻求 PDF 解决方案的开发人员的可行选择。

跨平台兼容性

查看 IronPDF 跨平台功能Syncfusion和Syncfusion的重要PDF库都与多种平台高度兼容; 他们可以在多种不同的系统以及在.NET框架内处理PDF文件。 因此,我们将概述每种产品在框架和平台方面的支持。

IronPDF:

  • .NET 版本:

    请注意,您提供的内容是空的。请提供要翻译的文本。(C#, VB.NET, F#)

    • .NET Core(8、7、6、5 和 3.1+)

    • .NET标准(2.0+)
  • .NET 框架(4.6.2+)
  • 应用环境: IronPDF支持包括Windows、Linux、Mac、Docker、Azure和AWS在内的应用环境。
  • IDEs(集成开发环境): 适用于Microsoft Visual Studio和JetBrains Rider & ReSharper等IDEs。
  • 操作系统和处理器: 支持多种不同的操作系统和处理器,包括Windows、Mac、Linux、x64、x86、ARM。

Syncfusion:

  • .NET标准(2.0+)
  • .NET Core 3.0
  • .NET 框架(4.6.1+)
  • 它还可用于其他各种应用程序,如 Windows Forms、ASP.NET Core、Xamarin、Flutter 等。
  • 支持 Windows、Mac 和 Linux

    了解有关 IronPDF 兼容性的更多信息,请访问IronPDF 功能概述.

功能比较概述:IronPDF 与 Syncfusion 的比较

IronPDF 和 Syncfusion 都为 PDF 操作提供了多种功能,因此在比较这两个库时,有必要了解一下每个库提供的一些具体功能。 在详细介绍这些功能之前,我们先来看看一些关键功能的概述:

IronPDF

  • HTML 转 PDF 转换: IronPDF 支持现代网页标准(CSS3, HTML5, JavaScript),允许高保真度PDF文档创建。
  • PDF加密: 用户可以使用IronPDF的强大加密工具来加密和解密PDF文件,为他们的PDF文件增加额外的安全层。
  • PDF编辑:IronPDF库包括合并、分割、格式化和修改现有PDF文件的功能。
  • PDF文件的数字签名: IronPDF允许用户对其PDF文件进行数字签名。
  • 水印添加:轻松地在PDF文件中添加文本和图片水印; 利用它使用HTML/CSS来完全控制该过程。
  • PDF盖章: 使用IronPDF在您的PDF文档上盖章图片和文字。

同步融合

  • PDF 创建:使用 Syncfusion 从零开始创建 PDF 文件,或将 HTML 内容和网页转换为简单的 PDF 文档。
  • 加密 PDF: 利用 Syncfusion 的加密工具保护您的敏感数据。
  • 编辑: 用户可以使用 Syncfusion 编辑 PDF 文档中的文本和图片。
  • 签署 PDF: 验证 PDF 文件并为其添加数字签名。
  • 使用表单工作: 支持在 PDF 文档中创建表单,并允许用户填写和扁平化表单。
  • PDF 压缩: 用户可以压缩 PDF 文档以节省空间。

    探索 IronPDF 的广泛内容详细功能.

IronPDF和Syncfusion功能比较

HTML 转换为 PDF

了解如何HTML 到 PDF 的转换工作在不同的工作场所和环境中,.NET、Java、Python 或 Node js 是一项简单而又必不可少的任务。 下面的代码示例比较了 IronPdf 和 Syncfusion 如何处理这一过程。

IronPDF 示例:

using IronPdf;

// Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;

// Instantiate Renderer
var renderer = new ChromePdfRenderer();

// Create a PDF from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
pdf.SaveAs("output.pdf");

// Advanced Example with HTML Assets
// Load external HTML assets: images, CSS and JavaScript.
// An optional BasePath 'C:\site\assets\' is set as the file location to load assets from
var myAdvancedPdf = renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", @"C:\site\assets\");
myAdvancedPdf.SaveAs("html-with-assets.pdf");
using IronPdf;

// Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = true;

// Instantiate Renderer
var renderer = new ChromePdfRenderer();

// Create a PDF from an HTML string using C#
var pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>");
pdf.SaveAs("output.pdf");

// Advanced Example with HTML Assets
// Load external HTML assets: images, CSS and JavaScript.
// An optional BasePath 'C:\site\assets\' is set as the file location to load assets from
var myAdvancedPdf = renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", @"C:\site\assets\");
myAdvancedPdf.SaveAs("html-with-assets.pdf");
Imports IronPdf

' Disable local disk access or cross-origin requests
Installation.EnableWebSecurity = True

' Instantiate Renderer
Dim renderer = New ChromePdfRenderer()

' Create a PDF from an HTML string using C#
Dim pdf = renderer.RenderHtmlAsPdf("<h1>Hello World</h1>")
pdf.SaveAs("output.pdf")

' Advanced Example with HTML Assets
' Load external HTML assets: images, CSS and JavaScript.
' An optional BasePath 'C:\site\assets\' is set as the file location to load assets from
Dim myAdvancedPdf = renderer.RenderHtmlAsPdf("<img src='icons/iron.png'>", "C:\site\assets\")
myAdvancedPdf.SaveAs("html-with-assets.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;
using Syncfusion.HtmlConverter;

HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
PdfDocument document = htmlConverter.Convert("http://www.syncfusion.com");
FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
document.Save(fileStream);
document.Close(true);
using Syncfusion.Pdf;
using Syncfusion.HtmlConverter;

HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
PdfDocument document = htmlConverter.Convert("http://www.syncfusion.com");
FileStream fileStream = new FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite);
document.Save(fileStream);
document.Close(true);
Imports Syncfusion.Pdf
Imports Syncfusion.HtmlConverter

Private htmlConverter As New HtmlToPdfConverter()
Private document As PdfDocument = htmlConverter.Convert("http://www.syncfusion.com")
Private fileStream As New FileStream("HTML-to-PDF.pdf", FileMode.CreateNew, FileAccess.ReadWrite)
document.Save(fileStream)
document.Close(True)
VB   C#

在将 HTML 转换为 PDF 时,IronPDF 提供了一种精简、简便的方法,同时还给予用户大量的控制权。 IronPDF 对现代网络标准有很好的支持,可以从网页生成高保真 PDF 文档。 Syncfusion 为简单的 URL 和 HTML 内容转换提供了直接的工具; 然而,它缺乏对任何高级网络标准的支持。

加密PDF文件

查看如何PDF加密和解密在不同的工作环境中,.NET、Java、Python 或 Node js 都至关重要。 更重要的是,要有一个能够轻松完成这项任务的工具。 让我们在下面的代码示例中比较一下 IronPdf 和 Syncfusion 是如何处理 PDF 加密的。

IronPDF 示例:

using IronPdf;
using System;

// Open an Encrypted File, alternatively create a new PDF from Html
var pdf = PdfDocument.FromFile("encrypted.pdf", "password");

// Edit file metadata
pdf.MetaData.Author = "Satoshi Nakamoto";
pdf.MetaData.Keywords = "SEO, Friendly";
pdf.MetaData.ModifiedDate = DateTime.Now;

// Edit file security settings
// The following code makes a PDF read-only and will disallow copy & paste and printing
pdf.SecuritySettings.RemovePasswordsAndEncryption();
pdf.SecuritySettings.MakePdfDocumentReadOnly("secret-key");
pdf.SecuritySettings.AllowUserAnnotations = false;
pdf.SecuritySettings.AllowUserCopyPasteContent = false;
pdf.SecuritySettings.AllowUserFormData = false;
pdf.SecuritySettings.AllowUserPrinting = IronPdf.Security.PdfPrintSecurity.FullPrintRights;

// change or set the document encryption password
pdf.Password = "my-password";
pdf.SaveAs("secured.pdf");
using IronPdf;
using System;

// Open an Encrypted File, alternatively create a new PDF from Html
var pdf = PdfDocument.FromFile("encrypted.pdf", "password");

// Edit file metadata
pdf.MetaData.Author = "Satoshi Nakamoto";
pdf.MetaData.Keywords = "SEO, Friendly";
pdf.MetaData.ModifiedDate = DateTime.Now;

// Edit file security settings
// The following code makes a PDF read-only and will disallow copy & paste and printing
pdf.SecuritySettings.RemovePasswordsAndEncryption();
pdf.SecuritySettings.MakePdfDocumentReadOnly("secret-key");
pdf.SecuritySettings.AllowUserAnnotations = false;
pdf.SecuritySettings.AllowUserCopyPasteContent = false;
pdf.SecuritySettings.AllowUserFormData = false;
pdf.SecuritySettings.AllowUserPrinting = IronPdf.Security.PdfPrintSecurity.FullPrintRights;

// change or set the document encryption password
pdf.Password = "my-password";
pdf.SaveAs("secured.pdf");
Imports IronPdf
Imports System

' Open an Encrypted File, alternatively create a new PDF from Html
Private pdf = PdfDocument.FromFile("encrypted.pdf", "password")

' Edit file metadata
pdf.MetaData.Author = "Satoshi Nakamoto"
pdf.MetaData.Keywords = "SEO, Friendly"
pdf.MetaData.ModifiedDate = DateTime.Now

' Edit file security settings
' The following code makes a PDF read-only and will disallow copy & paste and printing
pdf.SecuritySettings.RemovePasswordsAndEncryption()
pdf.SecuritySettings.MakePdfDocumentReadOnly("secret-key")
pdf.SecuritySettings.AllowUserAnnotations = False
pdf.SecuritySettings.AllowUserCopyPasteContent = False
pdf.SecuritySettings.AllowUserFormData = False
pdf.SecuritySettings.AllowUserPrinting = IronPdf.Security.PdfPrintSecurity.FullPrintRights

' change or set the document encryption password
pdf.Password = "my-password"
pdf.SaveAs("secured.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;

PdfLoadedDocument document = new PdfLoadedDocument("input.pdf");
PdfSecurity security = document.Security;
security.UserPassword = "syncfusion";
security.Algorithm = PdfEncryptionAlgorithm.AES;
security.KeySize = PdfEncryptionKeySize.Key256Bit;
security.Permissions = PdfPermissionsFlags.Print

document.Save("encrypted.pdf");
document.Close(true);
using Syncfusion.Pdf;

PdfLoadedDocument document = new PdfLoadedDocument("input.pdf");
PdfSecurity security = document.Security;
security.UserPassword = "syncfusion";
security.Algorithm = PdfEncryptionAlgorithm.AES;
security.KeySize = PdfEncryptionKeySize.Key256Bit;
security.Permissions = PdfPermissionsFlags.Print

document.Save("encrypted.pdf");
document.Close(true);
Imports Syncfusion.Pdf

Private document As New PdfLoadedDocument("input.pdf")
Private security As PdfSecurity = document.Security
security.UserPassword = "syncfusion"
security.Algorithm = PdfEncryptionAlgorithm.AES
security.KeySize = PdfEncryptionKeySize.Key256Bit
security.Permissions = PdfPermissionsFlags.Print document.Save("encrypted.pdf")
document.Close(True)
VB   C#

IronPdf 为用户提供了一个强大而又简洁明了的加密工具。 使用该工具,用户可以轻松加密 PDF,同时控制加密 PDF 的安全设置。 Syncfusion的加密工具不太直观;它提供两种加密类型,最终为用户的加密需求提供了更多选择,但这也意味着用户在使用该工具之前必须做更多的工作和研究。

编辑 PDF 内容

有时,在处理私人或敏感数据时,您可能希望编辑 PDF 中的文本PDF 文档的部分内容。 在以下代码示例中,我们将了解使用 IronPDF 与 Syncfusion 相比如何实现节录。

IronPDF 示例:

using IronPdf;

PdfDocument pdf = PdfDocument.FromFile("novel.pdf");

// Redact 'are' phrase from all pages
pdf.RedactTextOnAllPages("are");

pdf.SaveAs("redacted.pdf");
using IronPdf;

PdfDocument pdf = PdfDocument.FromFile("novel.pdf");

// Redact 'are' phrase from all pages
pdf.RedactTextOnAllPages("are");

pdf.SaveAs("redacted.pdf");
Imports IronPdf

Private pdf As PdfDocument = PdfDocument.FromFile("novel.pdf")

' Redact 'are' phrase from all pages
pdf.RedactTextOnAllPages("are")

pdf.SaveAs("redacted.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfRedaction textRedaction = new PdfRedaction(new RectangleF(10, 40, 30, 30), Color.Black);
loadedDocument.Pages[0].Redactions.Add(textRedaction);
loadedDocument.Save("redacted.pdf");
loadedDocument.Close(true);
using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfRedaction textRedaction = new PdfRedaction(new RectangleF(10, 40, 30, 30), Color.Black);
loadedDocument.Pages[0].Redactions.Add(textRedaction);
loadedDocument.Save("redacted.pdf");
loadedDocument.Close(true);
Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics

Private loadedDocument As New PdfLoadedDocument("input.pdf")
Private textRedaction As New PdfRedaction(New RectangleF(10, 40, 30, 30), Color.Black)
loadedDocument.Pages(0).Redactions.Add(textRedaction)
loadedDocument.Save("redacted.pdf")
loadedDocument.Close(True)
VB   C#

IronPDF 采用直接而简洁的方式对 PDF 内容进行编辑。 它有一个简单直观的 API,允许用户以编程方式编辑内容,从而提高工作区的效率。 Syncfusion 提供不同的编辑 PDF 内容的方法,包括删除内容、在编辑区域显示文本,以及在编辑区域绘制图像(如上图所示)。 虽然 Syncfusion 的编辑工具提供了大量的过程控制功能,但它需要更多的手工操作,学习曲线可能会更陡峭。

对PDF文档进行数字签名

自动完成对 PDF 文档进行数字签名翻译可以节省大量时间。以下是一些代码示例,展示了 IronPdf 和 Syncfusion 在文档签名方面的比较。

IronPDF 示例:

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

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>foo</h1>");

// Create X509Certificate2 object with X509KeyStorageFlags set to Exportable
X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "123456", X509KeyStorageFlags.Exportable);

// Create PdfSignature object
var sig = new PdfSignature(cert);

// Sign PDF document
pdf.Sign(sig);
pdf.SaveAs("signed.pdf");
using IronPdf;
using IronPdf.Signing;
using System.Security.Cryptography.X509Certificates;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>foo</h1>");

// Create X509Certificate2 object with X509KeyStorageFlags set to Exportable
X509Certificate2 cert = new X509Certificate2("IronSoftware.pfx", "123456", X509KeyStorageFlags.Exportable);

// Create PdfSignature object
var sig = new PdfSignature(cert);

// Sign PDF document
pdf.Sign(sig);
pdf.SaveAs("signed.pdf");
Imports IronPdf
Imports IronPdf.Signing
Imports System.Security.Cryptography.X509Certificates

Private renderer As New ChromePdfRenderer()
Private pdf As PdfDocument = renderer.RenderHtmlAsPdf("<h1>foo</h1>")

' Create X509Certificate2 object with X509KeyStorageFlags set to Exportable
Private cert As New X509Certificate2("IronSoftware.pfx", "123456", X509KeyStorageFlags.Exportable)

' Create PdfSignature object
Private sig = New PdfSignature(cert)

' Sign PDF document
pdf.Sign(sig)
pdf.SaveAs("signed.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfCertificate certificate = new PdfCertificate("Syncfusion.pfx", "password");
PdfSignature signature = new PdfSignature(loadedDocument, loadedDocument.Pages[0], certificate, "Signature");
signature.Bounds = new RectangleF(0, 0, 100, 50);
loadedDocument.Save("signed.pdf");
loadedDocument.Close(true);
using Syncfusion.Pdf;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfCertificate certificate = new PdfCertificate("Syncfusion.pfx", "password");
PdfSignature signature = new PdfSignature(loadedDocument, loadedDocument.Pages[0], certificate, "Signature");
signature.Bounds = new RectangleF(0, 0, 100, 50);
loadedDocument.Save("signed.pdf");
loadedDocument.Close(true);
Imports Syncfusion.Pdf
Imports System.Drawing

Private loadedDocument As New PdfLoadedDocument("input.pdf")
Private certificate As New PdfCertificate("Syncfusion.pfx", "password")
Private signature As New PdfSignature(loadedDocument, loadedDocument.Pages(0), certificate, "Signature")
signature.Bounds = New RectangleF(0, 0, 100, 50)
loadedDocument.Save("signed.pdf")
loadedDocument.Close(True)
VB   C#

IronPDF 提供了一种将数字签名应用到 PDF 文档的直接方法,需要的代码行数较少,因此过程快速而简单。 相比之下,Syncfusion 需要的代码行数更多,因此是一个不太精简的选择。

应用 PDF 水印

添加和自定义功能PDF 水印在处理敏感文件时,在 PDF 文件上使用一个程序对处理保密、版权保护和品牌等任务非常有帮助。 以下是 IronPdf 和 Syncfusion 在为 PDF 文档添加水印方面的比较。

IronPDF 示例:

using IronPdf;

// Stamps a Watermark onto a new or existing PDF
var renderer = new ChromePdfRenderer();

var pdf = renderer.RenderUrlAsPdf("https://www.nuget.org/packages/IronPdf");
pdf.ApplyWatermark("<h2 style='color:red'>SAMPLE</h2>", 30, IronPdf.Editing.VerticalAlignment.Middle, IronPdf.Editing.HorizontalAlignment.Center);
pdf.SaveAs(@"C:\Path\To\Watermarked.pdf");
using IronPdf;

// Stamps a Watermark onto a new or existing PDF
var renderer = new ChromePdfRenderer();

var pdf = renderer.RenderUrlAsPdf("https://www.nuget.org/packages/IronPdf");
pdf.ApplyWatermark("<h2 style='color:red'>SAMPLE</h2>", 30, IronPdf.Editing.VerticalAlignment.Middle, IronPdf.Editing.HorizontalAlignment.Center);
pdf.SaveAs(@"C:\Path\To\Watermarked.pdf");
Imports IronPdf

' Stamps a Watermark onto a new or existing PDF
Private renderer = New ChromePdfRenderer()

Private pdf = renderer.RenderUrlAsPdf("https://www.nuget.org/packages/IronPdf")
pdf.ApplyWatermark("<h2 style='color:red'>SAMPLE</h2>", 30, IronPdf.Editing.VerticalAlignment.Middle, IronPdf.Editing.HorizontalAlignment.Center)
pdf.SaveAs("C:\Path\To\Watermarked.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
//Add a page to the document pdfpage page
PdfPageBase page = loadedDocument.Pages[0];
PdfGraphics graphics = page.Graphics;
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);
PdfGraphicsState state = graphics.Save();
graphics.SetTransparency(0.25f);
graphics.DrawString("Watermark", font, PdfPens.Blue, PdfBrushes.Blue, new PointF(100, 100));
graphics.Restore(state);
loadedDocument.Save("watermarked.pdf");
loadedDocument.Close(true);
using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
//Add a page to the document pdfpage page
PdfPageBase page = loadedDocument.Pages[0];
PdfGraphics graphics = page.Graphics;
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 20);
PdfGraphicsState state = graphics.Save();
graphics.SetTransparency(0.25f);
graphics.DrawString("Watermark", font, PdfPens.Blue, PdfBrushes.Blue, new PointF(100, 100));
graphics.Restore(state);
loadedDocument.Save("watermarked.pdf");
loadedDocument.Close(true);
Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports System.Drawing

Private loadedDocument As New PdfLoadedDocument("input.pdf")
'Add a page to the document pdfpage page
Private page As PdfPageBase = loadedDocument.Pages(0)
Private graphics As PdfGraphics = page.Graphics
Private font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 20)
Private state As PdfGraphicsState = graphics.Save()
graphics.SetTransparency(0.25F)
graphics.DrawString("Watermark", font, PdfPens.Blue, PdfBrushes.Blue, New PointF(100, 100))
graphics.Restore(state)
loadedDocument.Save("watermarked.pdf")
loadedDocument.Close(True)
VB   C#

IronPDF的简单有效的API允许用户快速将水印应用到PDF文档中,同时由于其使用了HTML/CSS,用户还可以对整个过程进行更多控制。 该功能简化了用户根据自己的要求添加个性化水印的过程。 不过,由于水印工具的复杂性,Syncfusion 的效率可能不高。 考虑到 Syncfusion 的学习曲线非常陡峭,新手必须手动完成所有工作,因此需要更长的时间才能理解其工作原理。

在PDF上加盖图像和文字

就像应用水印一样,有时您在处理 PDF 页面时可能需要盖章请加入我们。 现在,我们将比较 IronPDF 和 Syncfusion 如何处理在 PDF 文档上盖章的内容。

IronPDF 示例:

using IronPdf;
using IronPdf.Editing;

ChromePdfRenderer renderer = new ChromePdfRenderer();

PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create text stamper
TextStamper textStamper = new TextStamper()
{
    Text = "Text Stamper!",
    FontFamily = "Bungee Spice",
    UseGoogleFont = true,
    FontSize = 30,
    IsBold = true,
    IsItalic = true,
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the text stamper
pdf.ApplyStamp(textStamper);
pdf.SaveAs("stampText.pdf");
using IronPdf;
using IronPdf.Editing;

ChromePdfRenderer renderer = new ChromePdfRenderer();

PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create text stamper
TextStamper textStamper = new TextStamper()
{
    Text = "Text Stamper!",
    FontFamily = "Bungee Spice",
    UseGoogleFont = true,
    FontSize = 30,
    IsBold = true,
    IsItalic = true,
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the text stamper
pdf.ApplyStamp(textStamper);
pdf.SaveAs("stampText.pdf");
Imports IronPdf
Imports IronPdf.Editing

Private renderer As New ChromePdfRenderer()

Private pdf As PdfDocument = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>")

' Create text stamper
Private textStamper As New TextStamper() With {
	.Text = "Text Stamper!",
	.FontFamily = "Bungee Spice",
	.UseGoogleFont = True,
	.FontSize = 30,
	.IsBold = True,
	.IsItalic = True,
	.VerticalAlignment = VerticalAlignment.Top
}

' Stamp the text stamper
pdf.ApplyStamp(textStamper)
pdf.SaveAs("stampText.pdf")
VB   C#
using IronPdf;
using IronPdf.Editing;
using System;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create image stamper
ImageStamper imageStamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"))
{
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the image stamper
pdf.ApplyStamp(imageStamper, 0);
pdf.SaveAs("stampImage.pdf");
using IronPdf;
using IronPdf.Editing;
using System;

ChromePdfRenderer renderer = new ChromePdfRenderer();
PdfDocument pdf = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>");

// Create image stamper
ImageStamper imageStamper = new ImageStamper(new Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg"))
{
    VerticalAlignment = VerticalAlignment.Top,
};

// Stamp the image stamper
pdf.ApplyStamp(imageStamper, 0);
pdf.SaveAs("stampImage.pdf");
Imports IronPdf
Imports IronPdf.Editing
Imports System

Private renderer As New ChromePdfRenderer()
Private pdf As PdfDocument = renderer.RenderHtmlAsPdf("<h1>Example HTML Document!</h1>")

' Create image stamper
Private imageStamper As New ImageStamper(New Uri("https://ironpdf.com/img/svgs/iron-pdf-logo.svg")) With {.VerticalAlignment = VerticalAlignment.Top}

' Stamp the image stamper
pdf.ApplyStamp(imageStamper, 0)
pdf.SaveAs("stampImage.pdf")
VB   C#

Syncfusion 示例:

using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfPageBase page = loadedDocument.Pages[0];
PdfGraphics graphics = page.Graphics;
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12);
graphics.DrawString("Hello, World!", font, PdfBrushes.Black, new PointF(10, 10));
loadedDocument.Save("stamped.pdf");
loadedDocument.Close(true);
using Syncfusion.Pdf;
using Syncfusion.Pdf.Graphics;
using System.Drawing;

PdfLoadedDocument loadedDocument = new PdfLoadedDocument("input.pdf");
PdfPageBase page = loadedDocument.Pages[0];
PdfGraphics graphics = page.Graphics;
PdfFont font = new PdfStandardFont(PdfFontFamily.Helvetica, 12);
graphics.DrawString("Hello, World!", font, PdfBrushes.Black, new PointF(10, 10));
loadedDocument.Save("stamped.pdf");
loadedDocument.Close(true);
Imports Syncfusion.Pdf
Imports Syncfusion.Pdf.Graphics
Imports System.Drawing

Private loadedDocument As New PdfLoadedDocument("input.pdf")
Private page As PdfPageBase = loadedDocument.Pages(0)
Private graphics As PdfGraphics = page.Graphics
Private font As PdfFont = New PdfStandardFont(PdfFontFamily.Helvetica, 12)
graphics.DrawString("Hello, World!", font, PdfBrushes.Black, New PointF(10, 10))
loadedDocument.Save("stamped.pdf")
loadedDocument.Close(True)
VB   C#

IronPDF 可让用户以高度灵活和可定制的方式为 PDF 文档添加文本和图像印记。 通过将整个过程置于他们的控制之下,增强了他们的能力。 API 易于理解和使用,特别是对于那些对 HTML/CSS 有一定了解的人。 Syncfusion 的盖章过程更为复杂,更侧重于图像而非文本,但它仍为用户提供了对该过程的充分控制--不过,与该工具相关的学习曲线可能仍然相当陡峭。

DOCX 转 PDF

在制作 PDF 时,可能需要从不同的格式进行更改。 在这种情况下,我们将看看DOCX 转 PDF 转换并比较 IronPDF 和 Syncfusion 如何处理这一过程。

IronPDF 示例:

using IronPdf;

// Instantiate Renderer
DocxToPdfRenderer renderer = new DocxToPdfRenderer();

// Render from DOCX file
PdfDocument pdf = renderer.RenderDocxAsPdf("Modern-chronological-resume.docx");

// Save the PDF
pdf.SaveAs("pdfFromDocx.pdf");
using IronPdf;

// Instantiate Renderer
DocxToPdfRenderer renderer = new DocxToPdfRenderer();

// Render from DOCX file
PdfDocument pdf = renderer.RenderDocxAsPdf("Modern-chronological-resume.docx");

// Save the PDF
pdf.SaveAs("pdfFromDocx.pdf");
Imports IronPdf

' Instantiate Renderer
Private renderer As New DocxToPdfRenderer()

' Render from DOCX file
Private pdf As PdfDocument = renderer.RenderDocxAsPdf("Modern-chronological-resume.docx")

' Save the PDF
pdf.SaveAs("pdfFromDocx.pdf")
VB   C#

Syncfusion 示例:

using System.IO;
using Syncfusion.DocIO.DLS;
using Syncfusion.DocIORenderer;
using Syncfusion.OfficeChart;
using Syncfusion.Pdf;

WordDocument document = new WordDocument("sample.docx", FormatType.Docx);
DocToPDFConverter converter = new DocToPDFConverter();
document.ChartToImageConverter = new ChartToImageConverter();
PdfDocument pdf = converter.ConvertToPDF(document);
pdf.Save("output.pdf");
pdf.Close(true);
wordDocument.Close();
using System.IO;
using Syncfusion.DocIO.DLS;
using Syncfusion.DocIORenderer;
using Syncfusion.OfficeChart;
using Syncfusion.Pdf;

WordDocument document = new WordDocument("sample.docx", FormatType.Docx);
DocToPDFConverter converter = new DocToPDFConverter();
document.ChartToImageConverter = new ChartToImageConverter();
PdfDocument pdf = converter.ConvertToPDF(document);
pdf.Save("output.pdf");
pdf.Close(true);
wordDocument.Close();
Imports System.IO
Imports Syncfusion.DocIO.DLS
Imports Syncfusion.DocIORenderer
Imports Syncfusion.OfficeChart
Imports Syncfusion.Pdf

Private document As New WordDocument("sample.docx", FormatType.Docx)
Private converter As New DocToPDFConverter()
document.ChartToImageConverter = New ChartToImageConverter()
Dim pdf As PdfDocument = converter.ConvertToPDF(document)
pdf.Save("output.pdf")
pdf.Close(True)
wordDocument.Close()
VB   C#

IronPDF 使用简单明了的方法将 DOCX 文件转换为 PDF。 为此,我们使用了 ChromePdfRenderer,它可以从各种类型的文档中生成高质量的 PDF。 所有内容都集成在 IronPDF 库中,因此在将不同文件格式转换为 PDF 或之后保存 PDF 时无需额外安装。 然而,Syncfusion PDF** 本身无法执行此类转换; 在完成任何此类转换之前,首先需要在项目中安装 Syncfusion Word。

功能比较概要

功能比较概要

IronPDF 定价和许可

探索IronPDF 许可选项例如,在.NET、Java、Python 或 Node.js 项目中,开发人员需要购买.NET、Java、Python 或 Node.js 的许可证,许可证提供不同级别和附加功能。 开发者也可以购买所有产品的 IronSuite 许可选项您只需购买两套 IronSoftware 的产品,即可使用 IronSoftware 的所有产品。 如果您尚未准备购买许可证,IronPDF提供了一种30 天免费试用.

  • 永久许可证: 根据您团队的规模、项目需求和地点数量提供一系列永久许可证。 每种许可类型都包括电子邮件支持。
  • Lite License:此许可证价格为749美元,支持一个开发者、一个地点和一个项目。
  • Plus License(加强许可): 支持三名开发者、三个地点和三个项目,这是从轻量版许可升级的下一步,费用为$1,499。Plus许可还提供聊天支持和电话支持,除了基本的电子邮件支持。
  • 专业许可证: 此许可证适用于较大的团队,支持10名开发者、10个位置和10个项目,价格为2999美元。它提供与之前等级相同的联系支持渠道,但也提供屏幕共享支持。
  • 免版税重新分发: IronPDF 的许可还提供额外 $1,999 的免版税重新分发覆盖。
  • 不间断的产品支持: IronPDF 提供持续的产品更新、安全功能升级以及工程团队的支持,价格为 999 美元/年或一次性购买 1999 美元可享受 5 年的服务。
  • IronSuite:花费 $1,498,您将获得所有Iron Software产品的访问权,包括IronPDF、IronOCR、IronWord、IronXL、IronBarcode、IronQR、IronZIP、IronPrint和IronWebScraper。

    IronPDF 定价和许可选项

Syncfusion 定价和许可

Syncfusion 提供一系列许可证和级别,以满足不同开发人员的需求。 每种 License 均提供 24 小时支持、远程支持、无限制的错误和功能请求以及在线支持系统。

  • 团队许可证: Team License 是针对开发人员团队的许可证,在此范围内有三个层级。

    • 一个最多由 5 名开发人员组成的团队: 395 美元/月

    • 一个最多由 10 名开发人员组成的团队: 695 美元/月
  • 超过 10 人的团队: 该层级没有固定价格,您需要申请报价。
  • Unlimited License: 这些许可证层级没有固定价格,而是按照报价系统运行。

    • 项目许可: 一个命名的项目或应用程序

    • 全球许可: 公司范围内的所有开发人员均可使用。
  • 部门许可: 一家公司的一个部门,负责多个项目
  • 社区许可证: Syncfusion 的授权软件为年总收入低于 100 万美元、开发人员不超过 5 人、员工总数不超过 10 人的公司和用户提供社区许可证。

许可对照表

Syncfusion 许可证对比

文档和支持:IronPDF与Syncfusion

IronPDF

  • 全面的文档:涵盖所有功能的广泛且用户友好的文档。
  • 24/5 支持:提供活跃的工程师支持。
  • 视频教程:详细的视频指南可在YouTube上找到。
  • 社区论坛:为了提供额外支持而设立的活跃社区。
  • 定期更新:每月产品更新,确保具备最新功能和安全补丁。

Syncfusion

  • 论坛: 提供一个社区论坛,以便在其社区内进行交流和学习。
  • 教程: Syncfusion 知识库中有教程和指南。
  • 功能和错误: 用户可以提交有关产品的反馈意见,遇到错误时可以提交支持单。
  • 资源: Syncfusion 提供电子书、网络研讨会、技术常见问题解答等。

    有关 IronPDF 文档和支持的更多详情,请访问IronPDF文档IronPDF YouTube 频道.

结论

总之,在为 .NET Core 选择 PDF 操作库时,IronPDF 是上佳之选。 该工具功能丰富、易于使用,并且拥有全面的支持和文档,是开发人员的理想选择。 IronPDF 在多个方面表现出色,例如从HTML到PDF的转换、加密、编辑、数字签名和水印,为这些任务提供了流畅高效的解决方案。 此外,IronPDF 的定价和许可选项更为简单明了,很好地满足了不同团队规模和项目需求,使其成为许多开发者的经济实惠选择。

另一方面,Syncfusion PDF for .NET Core 虽然是一个功能强大的库,但往往需要更陡峭的学习曲线和更多的手动操作才能完成类似的任务。 Syncfusion 提供了一系列可靠的功能,但缺乏 IronPDF 所提供的直观易用性和灵活性。 不过,您可以将它与其他 Syncfusion 工具一起使用,进一步扩展其技能集,如 ASP.NET PDF 查看器或 Syncfusion Word。

对于那些在 .NET Framework 中寻找可靠、强大、用户友好的 PDF 库的人来说,IronPDF 显然是最佳选择。它集强大的功能、用户支持和灵活的许可选项于一身,是任何处理 PDF 的开发人员的宝贵工具。

您可以尝试 0 天免费试用 查看他们的可用功能。

< 前一页
iTextSharp C# HTML 转换为 PDF 的 .NET Core 替代方案
下一步 >
Wkhtmltopdf C# 比较与代码示例

准备开始了吗? 版本: 2024.12 刚刚发布

免费NuGet下载 总下载量: 11,781,565 查看许可证 >