Method: ROF::Collection.run_convert

Defined in:
lib/rof/collection.rb

.run_convert(src_image, dest_image, options) ⇒ Object



81
82
83
84
# File 'lib/rof/collection.rb', line 81

def self.run_convert(src_image, dest_image, options)
  command = set_convert_path + ' ' + src_image + options + ' ' + dest_image
  Kernel.system(command)
end