pdf-loader

1.0.2 • Public • Published

PDF to image loader for WebPack

This loader gets a PDF file, converts it to images, and emit those files. It also returns the dimensions for each page.

Prerequisites

It calls the pdftocairo command which must be installed prior to using this plugin. It is included in Poppler.

Installation

npm install pdf-loader

Usage

Load the PDF using import:

import pdf from "pdf-loader!./my.pdf";

The pdf variable holds the paths to the images and the dimensions:

[
  {image: "/my-page0-hash.png", size: {width: 595, height: 842}},
  {image: "/my-page1-hash.png", size: {width: 595, height: 842}},
  ...
]

If you use React, you can insert the pages directly to the DOM:

<img src={pdf[0].image}/>

Readme

Keywords

Package Sidebar

Install

npm i pdf-loader

Weekly Downloads

2,471

Version

1.0.2

License

ISC

Unpacked Size

4.12 kB

Total Files

3

Last publish

Collaborators

  • sashee