RELEASE: What's New in Summer 2024

How to Use PDF.js in 2 Easy Steps

By Logan Bittner | 2020 May 08

Sanity Image
Read time

3 min

In this article (a three-minute read), you’ll learn how to quickly embed a PDF in a web page using PDF.js, a popular open-source PDF viewer.

1. Download and Extract the PDF.js Package

2. Add the PDF viewer to your web page

We will also use it as a full screen PDF viewer where we can pass in a PDF filename via URL query string. Try the full screen viewer now:
Open Full Screen PDF.js Viewer

Step 1 - Download and Extract the PDF.js Package

Copied to clipboard

Let’s head over to GitHub to download the latest stable release and then extract the contents inside our website folder.
Here are the contents of the .zip:

├── build/
│   ├── pdf.js
│   └── ...
├── web/
│   ├── viewer.css
│   ├── viewer.html
│   └── ...
└── LICENSE

After extracting the .zip contents, our website folder could look something like this:

├── index.html
├── subpage.html
├── assets/
│   ├── pdf/
|       ├── my-pdf-file.pdf
|       ├── my-other-pdf-file.pdf
|       ├── ...
├── build/                            - PDF.js files
│   ├── pdf.js
│   ├── ...
├── web/                              - PDF.js files
│   ├── viewer.css
│   ├── viewer.html
│   ├── ...
└── LICENSE                           - PDF.js license

Note: Due to browser security restrictions, PDF.js cannot open local PDFs using a file:// URL. You will need to start a local web server or upload the files to your web server.

Step 2 - Embed the PDF Viewer in Website

Copied to clipboard

Our last step will be to embed the viewer in our web page by using an <iframe>. We will use a query string to tell the PDF viewer which PDF file to open. Like this:

<!DOCTYPE html>
<html>
  <head>
    <title>Hello world!</title>
  </head>
  <body style={{"fontFamily":"Arial, Helvetica, sans-serif"}}>

    <div style={{"width":"760px"}}>
      <h2>About Us</h2>
      <p>We help software developers do more with PDFs. PDF.js Express gives a flexible and modern UI to your PDF.js viewer while also adding out-of-the-box features like annotations, form filling and signatures.</p>

        <!--
          Place the following <div> element where you want the PDF to be displayed in your website. You can adjust the size using the width and height attributes.
        -->
        <div>
            <iframe id="pdf-js-viewer" src="/web/viewer.html?file=%2assets%2pdf%2Fmy-pdf-file.pdf" title="webviewer" frameborder="0" width="500" height="600"></iframe>
        </div>

    </div>

  </body>
</html>


You’re done!

If you’d like to load PDF files from a different domain name, you will need to ensure the server hosting the PDFs has been set up for CORS.


Full Screen PDF Viewer

In addition to embedding the viewer in a page, we can also open it in a full screen:

Here’s the code:

<a href="/web/viewer.html?file=%2Fmy-pdf-file.pdf">Open Full Screen PDF.js Viewer</a>

Just change the file query string parameter to open whatever you PDF you wish to open.

Customizing the PDF.js Toolbar

Copied to clipboard

We can also reorganize the toolbar by moving elements around, removing buttons, and changing the icons.

Let’s open public/lib/web/viewer.html and add the following to the <head> section:

<script src="customToolbar.js"></script>


Next, we’ll create customToolbar.js inside the public/lib/web folder and add the following code:

let sheet = (function() {
  let style = document.createElement(&quot;style&quot;);
  style.appendChild(document.createTextNode(&quot;&quot;));
  document.head.appendChild(style);
  return style.sheet;
 })();
 function editToolBar(){
  //when the page is resized, the viewer hides and move some buttons around.
  //this function forcibly show all buttons so none of them disappear or re-appear on page resize
  removeGrowRules();

  /* Reorganizing the UI 
   the &#39;addElemFromSecondaryToPrimary&#39; function moves items from the secondary nav into the primary nav
   there are 3 primary nav regions (toolbarViewerLeft, toolbarViewerMiddle, toolbarViewerRight) 
  */

  //adding elements to left part of toolbar
  addElemFromSecondaryToPrimary(&#39;pageRotateCcw&#39;, &#39;toolbarViewerLeft&#39;)
  addElemFromSecondaryToPrimary(&#39;pageRotateCw&#39;, &#39;toolbarViewerLeft&#39;)
  addElemFromSecondaryToPrimary(&#39;zoomIn&#39;, &#39;toolbarViewerLeft&#39;)
  addElemFromSecondaryToPrimary(&#39;zoomOut&#39;, &#39;toolbarViewerLeft&#39;)
  
  //adding elements to middle part of toolbar
  addElemFromSecondaryToPrimary(&#39;previous&#39;, &#39;toolbarViewerMiddle&#39;)
  addElemFromSecondaryToPrimary(&#39;pageNumber&#39;, &#39;toolbarViewerMiddle&#39;)
  addElemFromSecondaryToPrimary(&#39;numPages&#39;, &#39;toolbarViewerMiddle&#39;)
  addElemFromSecondaryToPrimary(&#39;next&#39;, &#39;toolbarViewerMiddle&#39;)
  
  //adding elements to right part of toolbar
  addElemFromSecondaryToPrimary(&#39;secondaryOpenFile&#39;, &#39;toolbarViewerRight&#39;)
  
  /* Changing icons */
  changeIcon(&#39;previous&#39;, &#39;icons/baseline-navigate_before-24px.svg&#39;)
  changeIcon(&#39;next&#39;, &#39;icons/baseline-navigate_next-24px.svg&#39;)
  changeIcon(&#39;pageRotateCcw&#39;, &#39;icons/baseline-rotate_left-24px.svg&#39;)
  changeIcon(&#39;pageRotateCw&#39;, &#39;icons/baseline-rotate_right-24px.svg&#39;)
  changeIcon(&#39;viewFind&#39;, &#39;icons/baseline-search-24px.svg&#39;);
  changeIcon(&#39;zoomOut&#39;, &#39;icons/baseline-zoom_out-24px.svg&#39;)
  changeIcon(&#39;zoomIn&#39;, &#39;icons/baseline-zoom_in-24px.svg&#39;)
  changeIcon(&#39;sidebarToggle&#39;, &#39;icons/baseline-toc-24px.svg&#39;)
  changeIcon(&#39;secondaryOpenFile&#39;, &#39;./icons/baseline-open_in_browser-24px.svg&#39;)

  /* Hiding elements */
  removeElement(&#39;secondaryToolbarToggle&#39;)
  removeElement(&#39;scaleSelectContainer&#39;)
  removeElement(&#39;presentationMode&#39;)
  removeElement(&#39;openFile&#39;)
  removeElement(&#39;print&#39;)
  removeElement(&#39;download&#39;)
  removeElement(&#39;viewBookmark&#39;)
 }
 function changeIcon(elemID, iconUrl){
  let element = document.getElementById(elemID);
  let classNames = element.className;
  classNames = elemID.includes(&#39;Toggle&#39;)? &#39;toolbarButton#&#39;+elemID :
 classNames.split(&#39; &#39;).join(&#39;.&#39;);
  classNames = elemID.includes(&#39;view&#39;)? &#39;#&#39;+elemID+&#39;.toolbarButton&#39; : &#39;.&#39;+classNames
  classNames+= &quot;::before&quot;;
  addCSSRule(sheet, classNames, `content: url(${iconUrl}) !important`, 0)
 }
 function addElemFromSecondaryToPrimary(elemID, parentID){
  let element = document.getElementById(elemID);
  let parent = document.getElementById(parentID);
  element.style.minWidth = &quot;0px&quot;;
  element.innerHTML =&#39;&#39;
  parent.append(element);
 }
 function removeElement(elemID){
  let element = document.getElementById(elemID);
  element.parentNode.removeChild(element);
 }
 function removeGrowRules(){
  addCSSRule(sheet, &#39;.hiddenSmallView *&#39;, &#39;display:block !important&#39;);
  addCSSRule(sheet, &#39;.hiddenMediumView&#39;, &#39;display:block !important&#39;);
  addCSSRule(sheet, &#39;.hiddenLargeView&#39;, &#39;display:block !important&#39;);
  addCSSRule(sheet, &#39;.visibleSmallView&#39;, &#39;display:block !important&#39;);
  addCSSRule(sheet, &#39;.visibleMediumView&#39;, &#39;display:block !important&#39;);
  addCSSRule(sheet, &#39;.visibleLargeView&#39;, &#39;display:block !important&#39;);
 }
 function addCSSRule(sheet, selector, rules, index) {
  if(&quot;insertRule&quot; in sheet) {
  sheet.insertRule(selector + &quot;{&quot; + rules + &quot;}&quot;, index);
  }
  else if(&quot;addRule&quot; in sheet) {
  sheet.addRule(selector, rules, index);
  }
 }
 window.onload = editToolBar


The PDF.js primary toolbar is broken down into 3 regions:

the primary PDF.js toolbar with three red boxes indicating Left, Middle and Right sections of the items on the bar.

The secondary toolbar is accessed via the chevron icon in the right region:

A narrow set of navigation items in a dropdown, with a red box on top right over the chevron icon.


We can move elements from the secondary toolbar into the left, middle, or right regions of the primary toolbar with the addElemFromSecondaryToPrimary function in customToolbar.js. For example, uncommenting this line will move the counter-clockwise rotation tool to the left region of the primary toolbar:

addElemFromSecondaryToPrimary(&#39;pageRotateCcw&#39;, &#39;toolbarViewerLeft&#39;)

If you wanted to move pageRotateCcw to the middle region instead, you’d replace toolbarViewerLeft with toolbarViewerMiddle, or toolbarViewerRight for the right region. To move a different tool, replace the pageRotateCcw ID with the element ID you want to move. (See below for a full list of element IDs.)

We can also hide elements like this:

removeElement(&#39;print&#39;)
removeElement(&#39;download&#39;)


To hide different elements, replace print or download with the element ID.

NOTE: Hiding the download and print buttons is not a bulletproof way to protect our PDF, because it’s still possible to look at the source code to find the file. It just makes it a bit harder.

We can also customize the icons for various tools by swapping out the `SVG` file, like this:

changeIcon(&#39;previous&#39;, &#39;icons/baseline-navigate_before-24px.svg&#39;)

In the above example, previous is the element ID, while icons/baseline-navigate_before-24px.svg is the path to the tool icon.

And that’s it!

Next Steps

Copied to clipboard

Now that you’ve got your PDF.js viewer up and running, consider the following tutorials:

Conclusion

Copied to clipboard

As you can see, building a basic PDF viewer with PDF.js is pretty straightforward. If you require additional capabilities, like PDF annotation, filling forms, or e-signatures, consider PDF.js Express, which provides a PDF.js-based viewer with out-of-the-box annotation, PDF form fill, and signing.

Check out the demo and let us know what you think!

Sanity Image

Logan Bittner

Share this post

email
linkedIn
twitter