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

A Content Preserving transformations on PDFs wrapped around QPDF

Results 12 node-qpdf issues
Sort by recently updated
recently updated
newest added

When we are trying to make password protection below error is occuring. Could you please provide the solution to encrypt and decrypt the pdf with password protection Error :spawn qpdf...

Hi, How to password protect PDF in Buffer or base64 string format? How to make node-qpdf return in Buffer or base64 format?

Due to the using of `/bin/sh -c` blablabla... it can execute an arbitrary command with forged 'input'. i.e. ```javascript const qpdf = require('node-qpdf'); qpdf.decrypt('/the/path/of/filename.pdf; ls -al; rm -rf /', 'somepassword');...

var options = { keyLength: 256, password: '12345', outputFile: '', restrictions: { modify: 'none', extract: 'n' } var doc = await qpdf.encrypt(`${fileLocation}.pdf`, options) when we tried the output file to...

**1. Do not even use node-qpdf. Use the real McCoy, ie. qpdf, the executable that node-qpdf is built on. 2. Download qpdf (https://sourceforge.net/projects/qpdf/files/qpdf/10.0.4/qpdf-10.0.4.tar.gz.asc/download) 3. Go into EnvironmentalVariables and create a...

> Please note that I am using `node-qpdf2`, but that's just a wrapper around this module. Trying to encrypt a file that has one or more spaces in the name...

Handled --no-warn functionality which is not supported in Ubuntu 16.04 because it has qpdf 8.0.2 as the most stable version which doesn't have the no-warn functionality.

Hello, I had a problem with blank password. First, you need to set double quotation marks so you don't get invalid password message. This may not be huge, but accepting...

i can encrypt pdfs using special chars in the password, but i cannot open them in the pdf viewer. it reports an incorrect password. i tried to encode the pdf...

help wanted