class MiniMagick::Tool

Abstract class that wraps command-line tools. It shouldn’t be used directly, but through one of its subclasses (e.g. {MiniMagick::Tool::Mogrify}). Use this class if you want to be closer to the metal and execute ImageMagick commands directly, but still with a nice Ruby interface.

@example

MiniMagick::Tool::Mogrify.new do |builder|
  builder.resize "500x500"
  builder << "path/to/image.jpg"
end