我想要一个pdf并将其转换成图像…每个PDF页面成为一个单独的图像.
还有一个类似的帖子:Convert a .doc or .pdf to an image and display a thumbnail in Ruby?
但是它不能覆盖如何为每个页面制作单独的图像.
解决方法
ImageMagick可以用PDF做这个.大概
RMagick可以做到,但我不熟悉它.
编辑:
require 'RMagick' pdf = Magick::ImageList.new("doc.pdf")
pdf是一个ImageList对象,根据documentation将其许多方法委托给了Array.您应该能够遍历pdf并调用写入将各个图像写入文件.