将PDF转换为PDF/A格式在Node.js中

Aspose.PDF for Node.js 允许您将PDF文件转换为符合PDF/A标准的PDF文件。

将PDF转换为PDF/A格式

如果您想转换PDF文档,可以使用 AsposePdfConvertToPDFA 函数。

请检查以下代码片段以便在 Node.js 环境中进行转换。

CommonJS:

  1. 调用 require 并将 asposepdfnodejs 模块导入为 AsposePdf 变量。
  2. 指定将要转换的 PDF 文件的名称。
  3. AsposePdf 作为 Promise 调用并执行文件转换操作。如果成功,接收对象。
  4. 调用函数 AsposePdfConvertToPDFA
  5. 修复 PDF 文件。因此,如果 ‘json.errorCode’ 为 0,操作结果将保存在 “ResultConvertToPDFA.pdf” 中。在转换过程中,会执行验证,验证结果将保存为 “ResultConvertToPDFALog.xml”。如果 json.errorCode 参数不为 0,并且因此在您的文件中出现错误,则错误信息将包含在 ‘json.errorText’ 中。

  const AsposePdf = require('asposepdfnodejs');
  const pdf_file = 'Aspose.pdf';
  AsposePdf().then(AsposePdfModule => {
      /*将 PDF 文件转换为 PDF/A(1A) 并保存为 "ResultConvertToPDFA.pdf"*/
      /*在转换过程中,也会执行验证,"ResultConvertToPDFA.xml"*/
      const json = AsposePdfModule.AsposePdfConvertToPDFA(pdf_file, AsposePdfModule.PdfFormat.PDF_A_1A, "ResultConvertToPDFA.pdf", "ResultConvertToPDFALog.xml");
      console.log("AsposePdfConvertToPDFA => %O", json.errorCode == 0 ? [json.fileNameResult, json.fileNameLogResult] : json.errorText);
  });

ECMAScript/ES6:

  1. 导入 asposepdfnodejs 模块。
  2. 指定将要转换的PDF文件的名称。
  3. 初始化 AsposePdf 模块。如果成功,接收对象。
  4. 调用函数 AsposePdfConvertToPDFA
  5. 修复 PDF 文件。因此,如果 ‘json.errorCode’ 为 0,操作结果将保存在 “ResultConvertToPDFA.pdf” 中。在转换过程中,会进行验证,验证结果保存在 “ResultConvertToPDFALog.xml” 中。如果 json.errorCode 参数不为 0,因此文件中出现错误,错误信息将包含在 ‘json.errorText’ 中。

  import AsposePdf from 'asposepdfnodejs';
  const AsposePdfModule = await AsposePdf();
  const pdf_file = 'Aspose.pdf';
  /*将 PDF 文件转换为 PDF/A(1A) 并保存为 "ResultConvertToPDFA.pdf"*/
  /*在转换过程中,也会进行验证,"ResultConvertToPDFA.xml"*/
  const json = AsposePdfModule.AsposePdfConvertToPDFA(pdf_file, AsposePdfModule.PdfFormat.PDF_A_1A, "ResultConvertToPDFA.pdf", "ResultConvertToPDFALog.xml");
  console.log("AsposePdfConvertToPDFA => %O", json.errorCode == 0 ? [json.fileNameResult, json.fileNameLogResult] : json.errorText);