npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-pdf-watermark

v1.0.6

Published

React component for Viewing PDF with watermark as PDF.js Wrapper.

Downloads

204

Readme

react-pdf-js

react-pdf-watermark provides a component for rendering PDF documents using mozilla/pdf.js and ability to adding watermark to PDF. Written for React 15/16 and ES2015.

This package is originally built by mikecousins/react-pdf-js with a number of enhancement:

  • Added hook onPageRenderComplete() for determine whether the page is loaded onCanvas.
  • Watermark - For displaying watermark on top of original PDF.
  • Add check handler for duplicated canvas load.
  • Add custom pdf.worker file

Usage

Install with npm install react-pdf-watermark

Example

Use it in your app (showing some basic pagination as well):

import React from 'react';
import PDF from 'react-pdf-watermark';

class MyPdfViewer extends React.Component {
  state = {};

  handlePrevious = () => {
    this.setState({ page: this.state.page - 1 });
  }

  handleNext = () => {
    this.setState({ page: this.state.page + 1 });
  }

  renderPagination = (page, pages) => {
    let previousButton = <li className="previous" onClick={this.handlePrevious}><a href="#"><i className="fa fa-arrow-left"></i> Previous</a></li>;
    if (page === 1) {
      previousButton = <li className="previous disabled"><a href="#"><i className="fa fa-arrow-left"></i> Previous</a></li>;
    }
    let nextButton = <li className="next" onClick={this.handleNext}><a href="#">Next <i className="fa fa-arrow-right"></i></a></li>;
    if (page === pages) {
      nextButton = <li className="next disabled"><a href="#">Next <i className="fa fa-arrow-right"></i></a></li>;
    }
    return (
      <nav>
        <ul className="pager">
          {previousButton}
          {nextButton}
        </ul>
      </nav>
    );
  }

  render() {
    let pagination = null;
    if (this.state.pages) {
      pagination = this.renderPagination(this.state.page, this.state.pages);
    }
    return (
      <div>
        <PDF
          file="test.pdf"
          page={this.state.page}
          watermark="WATERMARK GOES HERE.."
          watermarkOptions={{
            transparency: 0.5,
            fontSize: 55,
            fontStyle: 'Bold',
            fontFamily: 'Arial'
          }}
          onDocumentComplete={ () => { /* Do anything on document loaded like remove loading, etc */ }}
          onPageRenderComplete={(pages, page) => this.setState({ page, pages })}
        />
        {pagination}
      </div>
    )
  }
}

export default MyPdfViewer;

Custom Watermark Styling

For more watermark styling, you can customize it yourself by creating watermark render function that will receipt canvas and context as params.

  ...

  applyWatermark = (canvas, context) => {
    context.globalAlpha = 0.15
    context.font = '55px bold Arial'
    context.translate(canvas.width / 2, canvas.height / 2)
    context.rotate(-Math.atan(canvas.height / canvas.width)) // Rotate watermark to show diagonally

    const text = 'Strictly Confidential. Not to be circulated'
    metrics = context.measureText(text)
    context.fillText(text, -metrics.width / 2, (55 / 2))
  }

  ...

And then apply it to your PDF component:

  <PDF
    file="test.pdf"
    ...
    watermark={this.applyWatermark}
  />