I have an array of images. How can I combine them into a PDF, with one image per page?
I've taken a look at RGhost and RMagic and the answer might be in there somewhere but it's eluding me right now.
I have an array of images. How can I combine them into a PDF, with one image per page?
I've taken a look at RGhost and RMagic and the answer might be in there somewhere but it's eluding me right now.
Have a look into prawn
gem. Simple example see below:
require 'prawn'
Prawn::Document.generate('hello.pdf') do |pdf|
pdf.text("Hello Prawn!")
pdf.image "#{Prawn::DATADIR}/images/fractal.jpg", :at => [200, 100]
end
You can use RMagick's
ImageList#write
:Example: