module Morandi

Constants

VERSION

Public Instance Methods

process(file_in, options, out_file, local_options = {}) click to toggle source
# File lib/morandi.rb, line 15
def process(file_in, options, out_file, local_options = {})
  pro = ImageProcessor.new(file_in, options, local_options)
  pro.process!
  pro.write_to_jpeg(out_file)
end