DEV Community

Jerry Weyer
Jerry Weyer

Posted on • Originally published at jerryweyer.lu

Combining PDFs in a Ruby on Rails application

When creating PDFs you might need to combine different PDFs into one larger file, for example if you want to add a cover page to a PDF report you are generating, or if you want to add your general terms to an invoice PDF you are sending via your application.

CombinePDF is a pure Ruby solution to parse PDF files and combine (merge) them with other PDF files, watermark them or stamp them.

Combining PDFs, for example an invoice and terms and conditions, is pretty straight-forward:

  pdf = CombinePDF.new
  pdf << CombinePDF.load("invoice.pdf")
  pdf << CombinePDF.load(Rails.root.join('lib', 'data', 'terms.pdf').to_s)
  pdf.save "combined.pdf"
Enter fullscreen mode Exit fullscreen mode

CombinePDF offers the handy parse method to handle PDFs from a remote location. This can be especially useful when working with ActiveStorage files hosted on Amazon S3 and similar services.

In one of our apps, our users can upload documents that will be combined into a larger PDF. It is not always possible to scan for compatible PDFs during the upload, and we don't want to abort the entire process when an incompatible PDF is uploaded.

CombinePDF offers the allow_optional_content option, which allows you to merge PDFs with optional content sections without raising an exception. We encountered a few instances where uploaded PDFs were not correctly displayed when using this option, but it allows the user to get the final PDFs and assess themselves if they want to replace the PDF in question by a compatible version.

Latest comments (1)

Collapse
 
timfanda35 profile image
Bear Su

It save my time, thank you!