node-pdftk icon indicating copy to clipboard operation
node-pdftk copied to clipboard

A wrapper for PDF Toolkit with streams and promises.

Results 18 node-pdftk issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When I try to concatenate PDFs in an [Express](http://expressjs.com/) application, the resulting PDF is empty: const documents = new Map(); documents.set('A', 'input1.pdf') documents.set('B', 'input2.pdf') const input_obj =...

https://github.com/jjwilly16/node-pdftk/blob/4123256f03884b5cdd78ef85bb71c42d1e604346/index.js#L72

const pdftk = require('node-pdftk'); pdftk.configure({ bin: 'C:/Program Files (x86)/PDFtk Server/bin', Promise: require('bluebird'), ignoreWarnings: true, }); pdftk .input([textfile, change,log]) .output() .then(buf => { let path = './merged.pdf'; fs.open(path, 'w', function (err,...

I notice in pdftk doc we can uncompress a pdf for editing using following command ``` pdftk doc.pdf output doc.unc.pdf uncompress ``` I wonder does node-pdftk provide a way to...

**Is your feature request related to a problem? Please describe.** Every once in a while, when calling `.output()`, `node-pdftk` throws an error and the only information in the error message...

Before ``` found 189 vulnerabilities (115 low, 5 moderate, 68 high, 1 critical) run `npm audit fix` to fix them, or `npm audit` for details ``` After update: ``` 6:15...

I have this working fine locally, but it's crashing after deploying to heroku. Is it possible to get it working with Heroku? Ideally I would have a PDF form auto...

**Describe the bug** When attempting to burst a PDF that has an owner password set, node-pdftk throws an error with the warning from pdftk even though `ignoreWarnings` is set to...

Hi, and thanks for this library! I took @ocallarob's excellent changes from PR #30, rebased them on current master to resolve the conflict, squashed his three commits into one and...

Any sample code snippet to use this package to split the pdf into separate pages ? It will be very useful if we can get one .. Thank you !