A utility for converting pdf to image formats. Supports different outputs: directly to file, base64 or buffer.
npm install pdf2pic[![Donate][paypal-image]](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=938FMCPPQG4DQ¤cy_code=USD&source=url)
![Build Status][github-actions-url]




[![NPM Version][npm-image]][npm-url]
![License][npm-url]

[![Downloads Stats][npm-downloads]][npm-url]
A utility for converting pdf to image, base64 or buffer format.
> IMPORTANT NOTE: Please support this library by donating via PayPal, your help is much appreciated. Contributors are also welcome!
* node >= 14.x
* graphicsmagick
* ghostscript
Follow this guide to install the required dependencies.
```
npm install --save pdf2pic
`javascript
import { fromPath } from "pdf2pic";
const options = {
density: 100,
saveFilename: "untitled",
savePath: "./images",
format: "png",
width: 600,
height: 600
};
const convert = fromPath("/path/to/pdf/sample.pdf", options);
const pageToConvertAsImage = 1;
convert(pageToConvertAsImage, { responseType: "image" })
.then((resolve) => {
console.log("Page 1 is now converted as image");
return resolve;
});
`
- fromPath(filePath, options)
- fromBuffer(buffer, options)
- fromBase64(b64string, options)
Initialize PDF to image conversion by supplying a file path
#### Functions
Convert a specific page of the PDF to Image/Base64/Buffer by supplying a file path
`javascript`
fromPath(filePath, options)(page, convertOptions)
* filePath - pdf file's path
* options - see options.
* page - page number to convert to an image
* convertOptions - see convertOptions.
---
Converts PDF to Image/Base64/Buffer by supplying a file path
`javascript`
fromPath(filePath, options).bulk(pages, convertOptions)pages
* filePath - pdf file's path
* options - see options.
* pages - page numbers to convert to image
* set to -1 to convert all pagespages
* also accepts an array indicating the page number e.g. [1,2,3]1
* also accepts number e.g.
* convertOptions - see convertOptions
---
Set GraphicsMagick's subclass or path
`javascript`
fromPath(filePath, options).setGMClass(subClass)convert()
NOTE: should be called before calling or bulk().subClass
* filePath - pdf file's path
* options - see options.
* subClass - path to gm binary or set to true to use imagemagick
* set to true to use imagemagicksubClass
* supply a valid path as to locate gm path specified
---
#### Functions
Convert a specific page of the PDF to Image/Base64/Buffer by supplying a buffer
`javascript`
fromBuffer(buffer, options)(page, convertOptions)
Functions same as fromPath(filePath, options)(page, convertOptions) only input is changed
---
Converts PDF to Image/Base64/Buffer by supplying a buffer:
`javascript`
fromBuffer(buffer, options).bulk(pages, convertOptions)
Functions same as fromPath(filePath, options).bulk(pages, convertOptions) only input is changed
---
Set GraphicsMagick's subclass or path:
`javascript`
fromBuffer(buffer, options).setGMClass(subClass)
Functions same as fromPath(filePath, options).setGMClass(subClass) only input is changed
---
#### Functions
Convert a specific page of the PDF to Image/Base64/Buffer by supplying a base64 string:
`javascript`
fromBase64(b64string, options)(page, convertOptions)
Functions same as fromPath(filePath, options)(page, convertOptions) only input is changed.
---
Converts PDF to Image/Base64/Buffer by supplying a base64 string:
`javascript`
fromBase64(b64string, options).bulk(pages, convertOptions)
Functions same as fromPath(filePath, options).bulk(pages, convertOptions) only input is changed.
---
Set GraphicsMagick's subclass or path:
`javascript`
fromBase64(b64string, options).setGMClass(subClass)
Functions same as fromPath(filePath, options).setGMClass(subClass) only input is changed.
---$3
Following are the options that can be passed on the pdf2pic api:
| option | default value | description |
|---------------------|---------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| quality | 0 | Image compression level. Value depends on format, usually from 0 to 100 (more info) |'png'
| format | | Formatted image characteristics / image format (image characteristics, image format) |768
| width | | Output width |512
| height | | Output height |false
| preserveAspectRatio | | Maintains the aspect ratio of the image. When set to true and both width and height are specified, they are interpreted as the minimum width and minimum height, respectively. If set to true with only the width specified, the height will be automatically determined while preserving the aspect ratio, and vice versa. |72
| density | | Output DPI (dots per inch) (more info) |'./'
| savePath | | Path where to save the output |'untitled'
| saveFilename | | Output filename |'jpeg'
| compression | | Compression method (more info) |
| option | default value | description |
|--------------|---------------|-------------|
| responseType | image | Response type of the output. Accepts: image, base64 or buffer |
The parameter can also be a boolean, if true then the response type will be base64 and if false then the response type will be image`.
This is deprecated and will be removed in the next major version.
[npm-image]: https://img.shields.io/npm/v/pdf2pic.svg?style=flat-square
[npm-url]: https://www.npmjs.com/package/pdf2pic
[npm-downloads]: https://img.shields.io/npm/dm/pdf2pic.svg?style=flat-square
[github-actions-url]: https://github.com/yakovmeister/pdf2image/actions/workflows/test.yml/badge.svg?branch=master
[paypal-image]: https://img.shields.io/badge/Donate-PayPal-green.svg