回形针在选定的样式上运行处理器

时间:2009-07-22 20:22:44

标签: ruby-on-rails paperclip

我有一个:xxx图像处理器,我在模型中有两种样式:big和:thumb。

我如何处理:xxx只有:拇指图像留下:大图像未触动?

4 个答案:

答案 0 :(得分:19)

我最近遇到了类似的问题,并在留言板上找到了这个解决方案。希望能帮助到你!

has_attached_file :screenshot,
 :default_style => :full,
 :styles => {
   :full => "280x210",
   :cropped => { :processors => [:screenshot_crop] }
 }

答案 1 :(得分:1)

默认情况下,Rake任务会刷新所有缩略图。请记住,它不会触摸/处理原始图像。

您可以拥有look at the RakefileAttachment类并进行修改,以允许您指定特定的缩略图大小,但当前设计假设您要从原始设置中重做所有缩略图并重做原始

答案 2 :(得分:1)

将此代码添加到paperclip.rake文件中:

   desc "Reprocesses your attachments style (set CLASS, ATTACHMENT and STYLE)"
    task :style => :environment do
      module JustForOneDay
        NAME = ENV['STYLE']
      end

      module ::Paperclip
        class Attachment
          def post_process_styles #:nodoc:
            @styles.each do |name, args|
              if JustForOneDay::NAME == name
                begin
                  raise RuntimeError.new("Style #{name} has no processors defined.") if args[:processors].blank?
                  @queued_for_write[name] = args[:processors].inject(@queued_for_write[:original]) do |file, processor|
                    Paperclip.processor(processor).make(file, args, self)
                  end
                rescue PaperclipError => e
                  log("An error was received while processing: #{e.inspect}")
                  (@errors[:processing] ||= []) << e.message if @whiny
                end
              end
            end
          end
        end
      end

      for_all_attachments do |instance, name|
        result = instance.send(name).reprocess!
      end
    end
  end

使用Paperclip 2.3.1.1进行测试

在Paperclip 2.3.3中,这应该是:

def post_process_styles #:nodoc:
  styles.each do |name, style|
    if JustForOneDay::NAME == name
    begin
      raise RuntimeError.new("Style #{name} has no processors defined.") if style.processors.blank?
      @queued_for_write[name] = style.processors.inject(@queued_for_write[:original]) do |file, processor|
        Paperclip.processor(processor).make(file, style.processor_options, self)
      end
    rescue PaperclipError => e
      log("An error was received while processing: #{e.inspect}")
      (@errors[:processing] ||= []) << e.message if @whiny
    end
    end
  end
end

这很容易,只需在回形针版本中找到attachment.rb文件。

答案 3 :(得分:0)

我知道了 - 它不优雅,但它对我有用。

您的某个样式应具有与所有其他样式不同的尺寸。这样,在自定义Paperclip处理器中,您可以查看命令字符串的内容是否包含给定的尺寸。如果是这样,你会做特殊处理,如果没有,你就不会。

(我修改了这段代码 - 并修改了它 - 来自Ryan Bate的Railscast Episode 182.)

module Paperclip
  class Cropper < Thumbnail
    def transformation_command
      SPECIAL_PROCESSING_FLAG = "150x150"
      if crop_command && super.include?(SPECIAL_PROCESSING_FLAG)
        crop_command + super.sub(/ -crop \S+/, '')
      else
        super 'do nothing fancy
      end
    end

    def crop_command
      target = @attachment.instance
      if target.cropping?
        " -crop '#{target.crop_w.to_i}x#{target.crop_h.to_i}+#{target.crop_x.to_i}+#{target.crop_y.to_i}'"
      end
    end
  end
end

在我的情况下,我们在非特殊情况下重新处理并不重要,因为最终结果没有改变。