1

我在为 PDF 文件创建 JPG 缩略图时遇到问题。

我正在使用载波。Imagemagick 已正确安装。创建 PNG、JPG 或 GIF 文件的缩略图没有问题。

这是我使用的代码

version :thumb, :if => :image? do
    storage :file

        begin
            process :convert => 'jpg' # this should do the trick but doesn't
            process :resize_to_fill => [160,160]
            process :quality => 95
            process :set_content_type
            process :set_thumb_attr => true
            def full_filename (for_file = model.file.file) 
                "#{model.slug}-thumb.jpg" 
            end
        rescue Exception => e
            puts e.inspect
            true
        end
end

def set_thumb_attr(val)
    model.thumb = val
end


def image?(new_file)
    model.mime.include? 'image/' or model.mime.include? '/pdf'
end

def set_content_type(*args)
    self.file.instance_variable_set(:@content_type, "image/jepg")
end

缩略图的内容表明创建的文件仍然是 PDF 文件。

%PDF-1.3 1 0 obj << /Pages 2 0 R /Type /Catalog ...

我感谢任何建议/解决方案。

4

1 回答 1

0

The problem was

process :quality => 95

It reprocessed the PDF. Removing that line resolved my problem.

于 2013-04-16T17:25:46.913 回答