class ImageProcessing::MiniMagick::Processor

def self.save_image(magick, destination_path, allow_splitting: false, **options)

image (e.g. quality).
the result to disk. Accepts additional options related to saving the
Calls the built ImageMagick command to perform processing and save
def self.save_image(magick, destination_path, allow_splitting: false, **options)
  Utils.apply_options(magick, **options)
  magick << destination_path
  magick.call
  Utils.disallow_split_layers!(destination_path) unless allow_splitting
end