1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/ruby/create-thumbnail-image-for-a-pdf.md
2016-02-18 19:30:03 -06:00

633 B

Create Thumbnail Image For A PDF

The rmagick gem is a wrapper around the ImageMagick software suite. This gem can be used to create a thumbnail image of a PDF using the following snippet of code.

require 'rmagick'
pdf = Magick::ImageList.new('document.pdf')
first_page = pdf.first
scaled_page = first_page.scale(300, 450)
scaled_page.write('document-thumbnail.jpg')

The scale can be adjust as necessary to the use case.

source