0

我们需要使用 node 解密受密码保护的 PDF 文件。我们正在使用 node-qpdf。这是我们的场景。

1)。我们正在获取受密码保护的 PDF 文件作为输入。2)。使用 QPDF 并使用可用密码,我们正在尝试对其进行解密。3)。最后,我们得到损坏的 PDF 文件。

我们正在关注给定的链接以供参考:a)。https://www.npmjs.com/package/node-qpdf

在解密部分,我们可以看到以下代码:

var qpdf = require('node-qpdf');
qpdf.decrypt(localFilePath, 'YOUR_PASSWORD_TO_DECRYPT_PDF', outputFilePath);

localFilePath = './myInputFile_WithPassword.pdf'
YOUR_PASSWORD_TO_DECRYPT_PDF = 'test'
outputFilePath = './myoutfileWith_NopasswordProtection.pdf'

运行相同后,我们得到错误:

TypeError: callback is not a function
at handleError (/home/runner/node_modules/node-qpdf/index.js:141:5)
at Socket.<anonymous> (/home/runner/node_modules/node-qpdf/index.js:124:5)
at Object.onceWrapper (events.js:286:20)
at Socket.emit (events.js:198:13)
at Socket.EventEmitter.emit (domain.js:448:20)
at addChunk (_stream_readable.js:287:12)
at readableAddChunk (_stream_readable.js:268:11)
at Socket.Readable.push (_stream_readable.js:223:10)
at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)

对于回调问题,我们还尝试将代码更改为:

    qpdf.decrypt(localFilePath,'YOUR_PASSWORD_TO_DECRYPT_PDF', (res)=>{
    console.log(res);
    fs.createWriteStream(outputFilePath)       
     });

但得到错误:

"**Error: spawn qpdf ENOENT**"

我们还尝试了以下代码:

=============

var exec = require('child_process').exec;
var pdfsourcepath = './myInputFile_WithPassword.pdf'; 
var pdfdestinationpath = './myoutfileWith_NopasswordProtection.pdf'; 
var password = "test";  

var command = 'qpdf --decrypt --password='+password+' '+pdfsourcepath+' '+pdfdestinationpath+'';

exec(command, function (error){
if (error !== null){
console.log('exec error: ' + error);
 } 
else{
    console.log('Your pdf is decrypted successfully.');
    }
   }
 );

=============

这段代码运行成功。

现在我们想使用节点模块 [node-qpdf] 完全实现相同的功能,但这是失败的 [正如解释的那样]。

请分享您对这个问题的想法。

我们也在 docker 镜像上实现了相同的功能,所以如果我们将 qpdf 安装在主服务器上,容器是否能够获取该二进制文件?我检查了这篇文章:https ://hub.docker.com/r/mgodlewski/qpdf 但我有点困惑。

因此,还可以根据 qpdf 的 docker 图像共享分辨率。

4

1 回答 1

-1

我认为只需删除回调参数。解密命令可以返回解密文件的输出流。

于 2020-08-31T02:46:21.283 回答