2014-03-27 49 views
1

我正在使用回形针并为上传的pdf生成缩略图。除了在IE8中查看时,它们工作得很好。任何人都知道这是为什么?回形针,PDF缩略图和IE8

has_attached_file :file, :styles => { :thumb => "140x140>" } 

    validates_attachment :file, presence: false, 
           content_type: { content_type: "application/pdf" }, 
           size: { less_than: 3.megabytes } 

回答

2

我能够加入JPG作为默认的缩略图来解决这个问题。

has_attached_file :file, :styles => { :thumb => ["140x140>", :jpg] }