Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Merging PDFs in Node

Hi i'm trying to merge pdf's of total of n but I cannot get it to work.

I'm using the Buffer module to concat the pdf's but it does only apply the last pdf in to the final pdf.

Is this even possible thing to do in node?

var pdf1 = fs.readFileSync('./test1.pdf');
var pdf2 = fs.readFileSync('./test2.pdf');

fs.writeFile("./final_pdf.pdf", Buffer.concat([pdf1, pdf2]), function(err) {
    if(err) {
        return console.log(err);
    }

    console.log("The file was saved!");
});

There are currently some libs out there but they do all depend on either other software or programming languages.

like image 357
mertje Avatar asked Dec 12 '16 12:12

mertje


People also ask

How can we do PDF merging using Javascript?

var merge = require('easy-pdf-merge'); merge(['File One. pdf','File Two. pdf'],'File Ouput. pdf',function(err){ if(err) return console.


2 Answers

What do you expect to get when you do Buffer.concat([pdf1, pdf2])? Just by concatenating two PDFs files you won’t get one containing all pages. PDF is a complex format (basically one for vector graphics). If you just added two JPEG files you wouldn’t expect to get a big image containing both pictures, would you?

You’ll need to use an external library. https://github.com/wubzz/pdf-merge might work for instance.

like image 52
idmean Avatar answered Oct 17 '22 21:10

idmean


HummusJS is another PDF manipulation library, but without a dependency on PDFtk. See this answer for an example of combining PDFs in Buffers.

like image 39
Zach Esposito Avatar answered Oct 17 '22 21:10

Zach Esposito