How do you combine PDFs in ruby?

前端 未结 8 2078
你的背包
你的背包 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:47

    Haven't seen great options in Ruby- I got best results shelling out to pdftk:

    system "pdftk #{file_1} multistamp #{file_2} output #{file_combined}"
    

提交回复
热议问题