在 Node.js 中旋转 PDF 页面

Contents
[ ]

本节介绍如何使用 Aspose.PDF for Node.js via C++ 旋转现有 PDF 文件中的页面。

如果您想旋转 PDF 页面,可以使用 AsposePdfRotateAllPages 函数。此函数使用一个特殊参数 ‘AsposePdfModule.Rotation’ 作为旋转值。您可以设置需要旋转 PDF 的度数。有以下选项:无、90、180 或 270 度。

请查看以下代码片段以在 Node.js 环境中旋转 PDF 页面。

CommonJS:

  1. 调用 require 并将 asposepdfnodejs 模块导入为 AsposePdf 变量。

  2. 指定要旋转的PDF文件名称。

  3. 调用 AsposePdf 作为 Promise 并执行旋转页面的操作。如果成功,接收对象。

  4. 调用函数 AsposePdfRotateAllPages

  5. 旋转所有PDF文件。旋转设置为270度(on270)。因此,如果 ‘json.errorCode’ 为0,操作结果保存在 “ResultRotation.pdf” 中。如果 json.errorCode 参数不为0,则在文件中出现错误,相应的错误信息将包含在 ‘json.errorText’ 中。


  const AsposePdf = require('asposepdfnodejs');
  const pdf_file = 'Aspose.pdf';
  AsposePdf().then(AsposePdfModule => {
      /*旋转PDF页面并保存为 "ResultRotation.pdf"*/
      const json = AsposePdfModule.AsposePdfRotateAllPages(pdf_file, AsposePdfModule.Rotation.on270, "ResultRotation.pdf");
      console.log("AsposePdfRotateAllPages => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText);
  });

ECMAScript/ES6:

  1. 导入 asposepdfnodejs 模块。
  2. 指定要旋转的 PDF 文件的名称。
  3. 初始化 AsposePdf 模块。如果成功,接收对象。
  4. 调用函数 AsposePdfRotateAllPages
  5. 旋转所有 PDF 文件。旋转设置为 270 度 (on270)。因此,如果 ‘json.errorCode’ 为 0,操作结果将保存在 “ResultRotation.pdf” 中。如果 json.errorCode 参数不为 0,并且相应地在您的文件中出现错误,错误信息将包含在 ‘json.errorText’ 中。

  import AsposePdf from 'asposepdfnodejs';
  const AsposePdfModule = await AsposePdf();
  const pdf_file = 'Aspose.pdf';
  /*旋转 PDF 页面并保存为 "ResultRotation.pdf"*/
  const json = AsposePdfModule.AsposePdfRotateAllPages(pdf_file, AsposePdfModule.Rotation.on270, "ResultRotation.pdf");
  console.log("AsposePdfRotateAllPages => %O", json.errorCode == 0 ? json.fileNameResult : json.errorText);