module CarrierWave::MiniMagick::ClassMethods

Public Instance Methods

convert(format) click to toggle source
# File lib/carrierwave/processing/mini_magick.rb, line 65
def convert(format)
  process :convert => format
end
resize_and_pad(width, height, background=:transparent, gravity=::Magick::CenterGravity) click to toggle source
# File lib/carrierwave/processing/mini_magick.rb, line 81
def resize_and_pad(width, height, background=:transparent, gravity=::Magick::CenterGravity)
  process :resize_and_pad => [width, height, background, gravity]
end
resize_to_fill(width, height) click to toggle source
# File lib/carrierwave/processing/mini_magick.rb, line 77
def resize_to_fill(width, height)
  process :resize_to_fill => [width, height]
end
resize_to_fit(width, height) click to toggle source
# File lib/carrierwave/processing/mini_magick.rb, line 73
def resize_to_fit(width, height)
  process :resize_to_fit => [width, height]
end
resize_to_limit(width, height) click to toggle source
# File lib/carrierwave/processing/mini_magick.rb, line 69
def resize_to_limit(width, height)
  process :resize_to_limit => [width, height]
end