2

jcrop rails チュートリアルに従っていますが、問題が発生しました。つまり、ペーパークリップが元のファイルからサムネイルを生成しているという事実ですが、別のスタイルから生成する必要があります。元のファイルには、製品のショットとドキュメントの端の間にスペースがありません。したがって、これ以上トリミングすることはできません。それに対抗するために、白いピクセル パディングを持つ別のスタイルを作成しました。それがサムネイルを生成したいものです。

# croppable is the one with the padding...it's what shows up in the crop view.
# I want :thumb to be generated from THAT style, not :original.
# When generating from :original, the crop offset/size is screwed because the dimensions of :original don't match :cropped
# and I can't crop beyond the pixel dimensions of :original.
has_attached_file :photo, :styles => {
                    :thumb => { :geometry => "300x300#", :format => :jpg, :processors => [:cropper] },
                    :general => ["150x375", :jpg],
                    :show => ["x425", :jpg],
                    :croppable => ["1200x1200>", :jpg]
        },
        :url  => "/assets/wines/:style/:wine_name",
        :path => ":rails_root/public:url",
        :default_url => ":wine_default",
        :default_path => ":rails_root/public:wine_default",
        :default_style => :show,
        :convert_options => {
            :thumb => '-gravity center -rotate -30',
            :croppable => '-gravity center -extent 1200x1200',
            :general => '-gravity center -extent 150x375 -quality 95',
            :all => '-quality 100 -antialias -flatten -background white -unsharp 0.3x0.3+5+0'
        },
        :processors => [:thumbnail, :compression]
4

2 に答える 2

3

他の人がオンラインで作成したプロセッサに出会い、それを自分で使用しました。高度な使用方法については、 http://pjkh.com/articles/speeding-up-thumbnail-generation-with-paperclip/で詳細を確認できます。

recursive_thumbnail.rb (lib/paperclip_processors にインクルード)

module Paperclip
    class RecursiveThumbnail < Thumbnail
      def initialize file, options = {}, attachment = nil
        super Paperclip.io_adapters.for(attachment.styles[options[:thumbnail] || :original]), options, attachment
      end
    end
end

そしてあなたのモデルのために:

:styles => {
    :croppable => ["1200x1200>", :jpg],
    :show => ["x425", :jpg],
    :general => ["150x375", :jpg],
    :thumb => {
        :geometry => "150x150^",
        :format => :jpg,
        :processors => [:recursive_thumbnail] },
        :thumbnail => :croppable
    }
于 2013-10-28T19:45:12.807 に答える