Module: Udongo::ImageManipulation::Base

Included in:
ResizeAndPad, ResizeToFill, ResizeToFit, ResizeToLimit
Defined in:
lib/udongo/image_manipulation/base.rb

Instance Method Summary collapse

Instance Method Details

#initialize(file, width, height, options = {}) ⇒ Object



6
7
8
9
10
11
# File 'lib/udongo/image_manipulation/base.rb', line 6

def initialize(file, width, height, options = {})
  @file = file
  @width = width
  @height = height
  @options = options
end