You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@pdftron/cad

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pdftron/cad

The Apryse SDK CAD Module.

11.6.0
latest
npmnpm
Version published
Weekly downloads
48
-57.89%
Maintainers
1
Weekly downloads
 
Created
Source

@pdftron/cad

This package is meant to be used in conjunction with @pdftron/pdfnet-node to support CAD conversion from Apryse. Follow this guide for more info on usage. https://docs.apryse.com/documentation/core/guides/features/conversion/convert-cad-to-pdf/

For further reading checkout our blog post on the project. https://apryse.com/blog/conversion/converting-cad-to-pdf

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)
  • Node.js version: 8 - 23
  • Electron version: 6 - 30

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

Usage

Add the @pdftron/cad package as a dependency in your package.json

Inside of your @pdftron/pdfnet-node code after initialization you should include the following line:

await PDFNet.addResourceSearchPath("./node_modules/@pdftron/cad/lib")

Here is an example of data extraction being used with this line.

const { PDFNet } = require('@pdftron/pdfnet-node');
const licenseKey = "Insert license key here"
const inputFile = "Insert input file location here"

async function main() {
        // This is where we import data-extraction
        await PDFNet.addResourceSearchPath("./node_modules/@pdftron/cad/lib")
        
        const doc = await PDFNet.PDFDoc.create();

        await PDFNet.Convert.fromCAD(doc, inputFile);
        
        const outputFile = 'out/converted_cad.pdf';
        await doc.save(outputFile, PDFNet.SDFDoc.SaveOptions.e_linearized);
}

PDFNet.runWithCleanup(main, licenseKey).catch(function (error) {
    console.log('Error: ' + JSON.stringify(error));
}).then(function () { return PDFNet.shutdown(); });;

A larger code sample can be found here

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

Licensing

Please go to https://docs.apryse.com/documentation/core/info/license/ to obtain a demo or production license.

Keywords

PDF

FAQs

Package last updated on 09 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts