0.0.6 • Published 2 months ago

pdf-poppler-with-password v0.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

pdf-poppler-with-password

For Electron

Convert PDF files into images using Poppler with promises. It achieves 10x faster performance compared to other PDF converters. Poppler library attached inside statically, so it has not require installation of poppler.

Note: Currently it supports for Windows and Mac OS only (Mac version not stable). Note: Mac version need latest libcairo.2.dylib

Installation

  $ npm i pdf-poppler-with-password

Usage

Remove Password

pdf.removePdfPassword(inputFile, outputFile, password)

Get pdf info

const pdf = require('pdf-poppler-with-password');

let file = 'C:\\tmp\\convertme.pdf'

pdf.info(file)
    .then(pdfinfo => {
        console.log(pdfinfo);
    });

Convert pdf into image

const path = require('path');
const pdf = require('pdf-poppler');

let file = 'C:\\tmp\\convertme.pdf'

let opts = {
    format: 'jpeg',
    out_dir: path.dirname(file),
    out_prefix: path.baseName(file, path.extname(file)),
    page: null
}

pdf.convert(file, opts)
    .then(res => {
        console.log('Successfully converted');
    })
    .catch(error => {
        console.error(error);
    })

with password

const path = require('path');
const pdf = require('pdf-poppler');

let file = 'C:\\tmp\\convertme.pdf'

let opts = {
    format: 'jpeg',
    out_dir: path.dirname(file),
    out_prefix: path.baseName(file, path.extname(file)),
    page: null,// will proses all page if empty or null value
    password:'******'
}
// convert or just get pdf info
0.0.6

2 months ago

0.0.5

3 months ago

0.0.3

3 months ago

0.0.4

3 months ago

0.0.2

3 months ago

0.0.1

3 months ago