有没有人知道如何使用Paperclip上传多页pdf并将每个页面转换为Jpeg?
到目前为止,每次上传PDF时,它只允许我将PDF的第一页看作JPEG。但我希望能够将PDF中的每个页面上传并转换为JPEG格式。
是否有任何宝石或插件可以帮助我上传10页PDF并将其作为10个JPEG文件转换/存储在数据库中?
我看过docsplit-images gem,但我不确定这是否是最佳解决方案或工作方式。
Post.rb
class Post < ActiveRecord::Base
belongs_to :Blogs
attr_accessible :content, :title, :pdf
has_attached_file :pdf,
:url => "/assets/products/:id/:style/:basename.:extension",
:path => ":rails_root/public/assets/products/:id/:style/:basename.:extension"
validates_attachment_content_type :pdf,
:content_type => [ 'application/pdf' ],
:message => "only pdf files are allowed"
end
_form.html.erb
<%= form_for ([@post]), :html => { :multipart => true } do |f| %>
<%= f.file_field :pdf %>
<% end %>
show.html.erb
<%= image_tag @post.pdf.url(:original) %>