Some test text!

Search
Hamburger Icon

Web / Guides / Run without viewer

Running Full APIs without viewer

Initial setup

  1. Download WebViewer, unzip the file, and move the "WebViewer" folder to a desired location within a web server folder.

  2. Create an empty HTML file and place it in the same location as the WebViewer folder (file will be referred to as SampleTest.html).

  3. Create an empty JavaScript file and place it in the same location as the WebViewer folder (file will be referred to as SampleTest.js).

Folder structure

This guide uses ES7 JavaScript async/await. For more information on async/await, refer to these online explanations.

Setting up your HTML document

Open up SampleTest.html with a text editor and copy/paste the following code into the HTML document.

<!DOCTYPE html>
<html>
<head>
  <!-- for WebViewer versions before version 8 this would be WebViewer/lib/core/CoreControls.js -->
  <script src="WebViewer/lib/core/webviewer-core.min.js"></script>
  
  <script src="WebViewer/lib/core/pdf/PDFNet.js"></script>
  <script src="WebViewer/samples/FileSaver.min.js"></script>
  <script src="WebViewer/samples/full-apis/Setup.js"></script>
</head>
<body>
  <script src="SampleTest.js"></script>
</body>
</html>

Here we include Full API, the necessary libraries it depends on, and our currently empty SampleTest.js custom file. Adding these files in a different order may result in errors.

Setting up your JavaScript document

Open up SampleTest.js with a text editor and copy/paste the following code into the JavaScript document:

(async function() {
  "use strict";
  const licenseKey = 'Insert commercial license key here after purchase';

  // the path to where the PDF worker files are
  Core.setWorkerPath('WebViewer/lib/core');

  async function main() {
    // To be filled
  }

  await PDFNet.runWithCleanup(main, licenseKey);
  // Alt: PDFNet.runWithoutCleanup(main, licenseKey);
  // 'runWithoutCleanup' does not deallocate anything after finishing.
})();

In this script our code is wrapped inside an immediately invoked function expression. Inside the function we have an empty main() function that we pass as a callback to PDFNet.runWithCleanup(). We'll add our custom code to the main() function later. We use PDFNet.runWithCleanup() to take care of locking and memory management of our code, more detail of this can be found in the Advanced Features section. Also note that PDFNet.runWithCleanup() and PDFNet.runWithoutCleanup() don't necessarily need to be used with async/await functions. They can be use with any function that returns a promise.

Setting up your main function

Copy/paste the following code and use it to replace our currently empty main() function.

async function main() {
  try {
    // creates an empty pdf document
    const doc = await PDFNet.PDFDoc.create();
    doc.initSecurityHandler();
    // Locks all operations on the document
    doc.lock();

    // insert user code after this point
    const pgnum = await doc.getPageCount();
    alert(`Test Complete! Your file has ${pgnum} pages`);
  } catch(err) {
    console.log(err.stack)
  }
}

Here we set up the basic requirements for a Full API script.

PDFNet.PDFDoc.create() - Creates an empty placeholder PDF document. All Full API functions return a promise, which means that for functions which return a value or object, we need to add an await statement in front to guarantee that the object is resolved by the time we use it. Without adding an await statement, PDFNet.PDFDoc.create() will simply return a promise rather than the document we want.

To open an existing PDF document, call PDFNet.PDFDoc.createFromURL("path/to/pdfdoc.pdf"); instead.

doc.initSecurityHander() - Initializes security handler which is used to check for and handle password-locked PDFs.

doc.lock() - Locks all operations on the document in order to avoid editing conflicts from other processes. More information is available in the advanced guide .

Running our own code

Now that we have properly set up our document, we can call read/write operations on it.

await doc.getPageCount() - Returns a promise that contains the number of pages in the PDF document. Remember to use await to resolve the promise.

Testing

To test if everything is working correctly, we have an alert message at the end of our try block that will output the number of pages in our PDF doc.

Since we have not added any pages to our pdf doc, the number of pages will be 0. Try swapping out create() with createFromURL("path/to/pdfdoc.pdf") to test the getPageCount() function on an existing PDF document.

const doc = await PDFNet.PDFDoc.createFromURL("myfile.pdf");

Folder structure

Run SampleTest.html on a server. The "Test Complete!" alert box should pop up after a few moments.

Get the answers you need: Chat with us