# File lib/mini_magick.rb, line 356
    def combine_options(tool = :mogrify, &block)
      c = CommandBuilder.new(tool)

      c << @path if tool == :convert
      block.call(c)
      c << @path
      run(c)
    end