3

横向きか縦向きかによって、画像を異なる方法で処理したいと考えています。

これは、私の画像アップローダー モデルのコードです。

def is_landscape?
    if @file
      image = ::MiniMagick::Image.open(file)
      Rails.logger.info "from in is_landscape? : #{image[:width] > image[:height]}"
      image[:width] >= image[:height]
    end
  end

  def is_portrait?
    Rails.logger.info "from in is_portrait? : #{image[:height] > image[:width]}"
    image[:height] > image[:width]
  end

  process :resize_to_fill => [667, 500], if: :is_landscape?

  process :resize_to_fill => [500, 667], if: :is_portrait?

  version :preview do
    process :resize_to_fill => [380,285]
  end

  version :thumb do
      process :resize_to_fill => [105,79], if: :is_landscape?
      process :resize_to_fill => [105, 158], if: :is_portrait?
  end

エラーが発生します

"ArgumentError (wrong number of arguments (1 for 0)): app/uploaders/image_path_uploader.rb:31:in `is_landscape?'"

私は何を間違っていますか?

4

1 に答える 1