New features
-
Support ImageMagick 7
MiniMagick::Tool::Convert
will now generatemagick convert
commands (and the same for others)MiniMagick::Tool::Magick
was added for generatingmagick
commands
-
MiniMagick.cli_prefix
was added to configure a prefix for commandsMiniMagick.cli_prefix = "firejail" MiniMagick::Tool::Magick.new { |magick| ... } # executes `firejail magick ...`
Other Improvements
-
Fix deadlocks when using
posix-spawn
as a shell backend -
Fix
Errno::ESRCH
sometimes being raised when the ImageMagick command would time out -
#label
and#caption
will now generate regular optionsMiniMagick::Tool::Convert.new do |convert| # BEFORE: NOW: convert.label("foo") # label:foo -label foo convert.caption("bar") # caption:bar -caption bar end
-
Add
pango
creation operatorMiniMagick::Tool::Magick.new do |magick| magick.pango("...") # pango:... # ... end
-
Handle GraphicsMagick returning
unknown
in EXIF data