How do you combine PDFs in ruby?

前端 未结 8 1987
你的背包
你的背包 2020-12-25 15:17

This was asked in 2008. Hopefully there\'s a better answer now.

How can you combine PDFs in ruby?

I\'m using the pdf-stamper gem to fill out a form in a PDF.

8条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-25 15:44

    I wrote a ruby gem to do this — PDF::Merger. It uses iText. Here's how you use it:

    pdf = PDF::Merger.new
    pdf.add_file "foo.pdf"
    pdf.add_file "bar.pdf"
    pdf.save_as "combined.pdf"
    

提交回复
热议问题