Skip to content

Instantly share code, notes, and snippets.

@eclosson
Created January 11, 2013 18:29
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save eclosson/4512859 to your computer and use it in GitHub Desktop.
Save eclosson/4512859 to your computer and use it in GitHub Desktop.
Merging PDFs with Prawn
class PdfMerger
def merge(pdf_paths, destination)
first_pdf_path = pdf_paths.delete_at(0)
Prawn::Document.generate(destination, :template => first_pdf_path) do |pdf|
pdf_paths.each do |pdf_path|
pdf.go_to_page(pdf.page_count)
template_page_count = count_pdf_pages(pdf_path)
(1..template_page_count).each do |template_page_number|
pdf.start_new_page(:template => pdf_path, :template_page => template_page_number)
end
end
end
end
private
def count_pdf_pages(pdf_file_path)
pdf = Prawn::Document.new(:template => pdf_file_path)
pdf.page_count
end
end
@uzzer
Copy link

uzzer commented Apr 16, 2014

I am also getting blank PDFs.

@bhh
Copy link

bhh commented May 16, 2014

prawn removed support for :template as of 0.14.0 :( causing the blank pages

@belgoros
Copy link

belgoros commented Aug 5, 2014

Officially, Prawn dropped template support, so it will not work.
See more about that: prawnpdf/prawn#376

PS. Sorry, didn't see @bhh post :)

@wakproductions
Copy link

👎🏽

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment