JSPM

pdf-to-base64

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8065
  • Score
    100M100P100Q166429F
  • License MIT

Generate a pdf to base64

Package Exports

  • pdf-to-base64

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pdf-to-base64) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

pdf-to-base64

Generate a base64 from pdf path or url.

NPM Version NPM Downloads Build Status devDependencies Status Codacy Badge License

About

It was all about converting the pdf into base64 string

Getting Started

Install

npm i -S pdf-to-base64

After: After:

const pdf2base64 = require('pdf-to-base64');
pdf2base64("test/sample.pdf")
    .then(
        (response) => {
            console.log(response); //cGF0aC90by9maWxlLmpwZw==
        }
    )
    .catch(
        (error) => {
            console.log(error); //Exepection error....
        }
    )
const pdf2base64 = require('pdf-to-base64');
pdf2base64("http://www.africau.edu/images/default/sample.pdf")
    .then(
        (response) => {
            console.log(response); //cGF0aC90by9maWxlLmpwZw==
        }
    )
    .catch(
        (error) => {
            console.log(error); //Exepection error....
        }
    )

LICENSE

MIT