@pdftron/pdfnet-node
TypeScript icon, indicating that this package has built-in type declarations

10.8.0-1 • Public • Published

@pdftron/pdfnet-node

This package leverages the full power of Apryse's native SDK for maximal performance and accuracy. In order to maintain consistency across platforms the Javascript API is used in the same manner as the PDFNet API available in Apryse's Web platform. Since access to the filesystem is included in Node.js/Electron some additional APIs requiring filesystem access have also been included.

Supported platform, Node.js, and Electron versions

This package depends on unmanaged add-on binaries, and the add-on binaries are not cross-platform. At the moment we have support for

  • OS: Linux (excluding Alpine), Windows(x64), Mac
  • Node.js version: 8 - 21
  • Electron version: 6 - 26

Installation will fail if your OS, Node.js or Electron version is not supported.

To install for Electron, runtime and target options are needed. For example, For Electron 6, we need to run npm i @pdftron/pdfnet-node --runtime=electron --target=6.0.0. Note that we need to use 6.0.0 for all Electron 6 versions.

Usage

Here is a code snippet to demonstrate how to use this package.

const { PDFNet } = require('@pdftron/pdfnet-node');  // you may need to set up NODE_PATH environment variable to make this work.

const main = async() => {
  const doc = await PDFNet.PDFDoc.create();
  const page = await doc.pageCreate();
  doc.pagePushBack(page);
  doc.save('blank.pdf', PDFNet.SDFDoc.SaveOptions.e_linearized);
};

// add your own license key as the second parameter, e.g. in place of 'YOUR_LICENSE_KEY'.
PDFNet.runWithCleanup(main, 'YOUR_LICENSE_KEY').catch(function(error) {
  console.log('Error: ' + JSON.stringify(error));
}).then(function(){ return PDFNet.shutdown(); });

There are some code samples in the @pdftron/pdfnet-node-samples package.

To get started please see the documentation at https://www.apryse.com/documentation/nodejs/get-started/integration.

Licensing

Please go to https://www.apryse.com/pws/get-key to obtain a demo license or https://wwww.apryse.com/form/contact-sales to obtain a production key. For further information, please visit https://www.apryse.com/licensing.

Readme

Keywords

Package Sidebar

Install

npm i @pdftron/pdfnet-node

Weekly Downloads

28,508

Version

10.8.0-1

License

Commercial

Unpacked Size

248 kB

Total Files

4

Last publish

Collaborators

  • pdftron-dev