简体   繁体   中英

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.

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM