• Now you can run the dev web server:

    npm run dev

    which will show:

    ➜  Local:   http://localhost:5173/➜  Network: use --host to expose➜  press h   enter to show help    

    Click the Local url with CTRL key to launch the browser.
    You will see that PDF Viewer is rendered in the page.

  • Documentation

    Live Demos

    Links:

    ","image":"http://www.luping.net/uploads/20241103/173063845667277278053a5.jpg","datePublished":"2024-11-08T08:36:37+08:00","dateModified":"2024-11-08T08:36:37+08:00","author":{"@type":"Person","name":"luping.net","url":"https://www.luping.net/articlelist/0_1.html"}}
    "If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
    Front page > Programming > How to customize PDF.js

    How to customize PDF.js

    Published on 2024-11-08
    Browse:174

    How to customize PDF.js

    PDF.js is a great open-source project which is frequently updated and new features are being added to, however looks-wise it's ugly, or maybe let's say it looks outdated. How about getting the latest PDF features and fixes from PDF.js but having a slick look on the presentation side?

    The pdf viewer from PdfJsKit is unobtrusive, it doesn't directly change code of PDF.js, it just includes PDF.js in an iframe and at runtime override HTML, JS and CSS to offer a slick modern look and better ui structure and usability and new features. This way we can always update PDF.js to the latest version easily and get all bug fixes and improvements.

    Other pdf viewers based on PDF.js usually don't update the default look, and the ones that does usually miss functionality due to separating into components but partially implementing them or offer a bad/partial API.

    Getting started

    Install the package to your project:

    npm install pdfjskit
    

    When the package is installed (or version is updated), assets (css, images etc.) used by PdfJsKit will be copied automatically from node_modules\pdfjskit\dist\pdfjskit to public\pdfjskit. Your project's public subdirectory is a common place for web assets, but if your JS framework has a different directory structure, you can move assets to another place.

    By default PdfJsKit loads assets from pdfjskit subdirectory relative to host page but you can change this path via passing custom libraryPath option to PdfViewer constructor.

    Usage

    import PdfViewer from "pdfjskit";
    
    var pdfViewer = new PdfViewer({
      documentUrl: "pdfjskit/sample.pdf",
      width: "80%",
      height: 720,
      resizable: true,
      language: "en-US",
      theme: "slate, classic-dark"
    });
    
    pdfViewer.render(document.getElementById("container"));
    

    Note that the NPM package contains a ES6 module pdfjskit.min.mjs, also a script version pdfjskit.min.js is provided in GitHub dist/pdfjskit directory and in developer package offered here.

    Using PdfJsKit in plain JS projects with Vite

    You can use sse any JS framework (React, Vue, Angular, Svelte, Blazor etc) with PdfJsKit, however for simplicity in this post, I will show usage for plain JS projects.

    For plain JS projects, I recommend using Vite, this way you can import from module in HTML files easily:

    1. Create a Vite project template:

      npm create vite@latest
      

      Choose the settings:

      ✔ Project name: … pdfjskit-vite-example
      ✔ Select a framework: › Vanilla
      ✔ Select a variant: › JavaScript
      
    2. A subdirectory with your project name will be created, do the following:

      cd pdfjskit-vite-example
      npm install
      npm install pdfjskit
      
    3. Edit index.html and replace contents with:

      
        
          
          
          PdfJsKit Vite Example
        
        
      
          
    4. Now you can run the dev web server:

      npm run dev
      

      which will show:

      ➜  Local:   http://localhost:5173/
      ➜  Network: use --host to expose
      ➜  press h   enter to show help    
      

      Click the Local url with CTRL key to launch the browser.
      You will see that PDF Viewer is rendered in the page.

    Documentation

    • Html API Docs
    • Markdown API Docs
    • Knowledge Base

    Live Demos

    • Module Bundle Test
    • Script Bundle Test

    Links:

    • GitHub
    • NPM
    Release Statement This article is reproduced at: https://dev.to/gleamtech/how-to-customize-pdfjs-3po7?1 If there is any infringement, please contact [email protected] to delete it
    Latest tutorial More>

    Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

    Copyright© 2022 湘ICP备2022001581号-3