将 PDF 文档转换为较旧或较新版本
Spire.PDF for .NET 是一款专门对 Word 文档进行操作的 .NET 类库。致力于在于帮助开发人员轻松快捷高效地创建、编辑、转换和打印 Microsoft Word 文档,而无需安装 Microsoft Word。
行号用于在每行文本旁边显示 Word 自动计算的行数。当我们需要参考合同或法律文件等文档中的特定行时,它非常有用。word中的行号功能允许我们设置起始值、编号间隔、与文本的距离以及行号的编号方式。使用 Spire.Doc,我们可以实现上述所有功能。本文将介绍如何将 HTML 转换为 PDF。
欢迎加入spire技术交流群:767755948
为了便于前后兼容,Spire.Pdf 允许您将现有 PDF 文档转换为另一个 PDF 版本。
可能无法完全支持所有 PDF 版本的应用程序。为了支持一些旧版本的应用程序,Spire.Pdf 允许您创建不同版本的 PDF 文档--PDF 1.3(Adobe Acrobat 4.x)、PDF 1.4(Adobe Acrobat 5.x)、PDF 1.5(Adobe Acrobat 6.x)等。最低为 1.0,最高为 1.7。这意味着您可以加载 PDF 文档,然后升级到更高版本或降级到更低版本--提供向后和向前的兼容性。
在本文中,我们将通过代码片段来说明如何轻松更改 PDF 文档的 PDF 版本。
代码片段展示了如何将 PDF 文档从旧版本(如 1.4)转换到新版本(如 1.6)。
using Spire.Pdf; namespace ConvertPDFVersion { class Program { static void Main(string[] args) { // Create a PDF document object PdfDocument document = new PdfDocument(); // Load an old-version PDF document document.LoadFromFile("1_4.pdf"); // Specify PDF version for document document.FileInfo.Version = PdfVersion.Version1_6; // Save the document in a newer version document.SaveToFile("newerPDF1_6.pdf"); } } }如您所见,要更改 PDF 文档的版本,您只需加载文档,然后将 PDFDocument.FileInfo.Version 属性设置为相关的 PDFVersion 枚举值。当您调用 PDFDocument.SaveToFile() 方法时,Spire.Pdf 将完成创建与您指定的版本兼容的 PDF 内容的所有工作。
在以下代码片段中,我们将文档从新的 PDF 版本(如 1.6)转换为旧版本(如 1.4)。
using Spire.Pdf; namespace ConvertPDFVersion { class Program { static void Main(string[] args) { // Create a PDF document object PdfDocument document = new PdfDocument(); // Load a new-version PDF document document.LoadFromFile("1_6.pdf"); // Specify PDF version for document document.FileInfo.Version = PdfVersion.Version1_4; // Save the document to a newer version document.SaveToFile("older_pdf_1_4.PDF"); } } }