1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
|
require "mini_magick/shell"
module MiniMagick
##
# Class that wraps command-line tools directly, as opposed MiniMagick::Image
# which is more high-level.
#
# @example
# MiniMagick.mogrify do |mogrify|
# mogrify.resize "500x500"
# mogrify << "path/to/image.jpg"
# end
#
class Tool
CREATION_OPERATORS = %w[xc canvas logo rose gradient radial-gradient plasma
pattern text pango]
##
# Aside from classic instantiation, it also accepts a block, and then
# executes the command in the end.
#
# @example
# puts MiniMagick.identify(&:version)
#
# @return [MiniMagick::Tool, String] If no block is given, returns an
# instance of the tool, if block is given, returns the output of the
# command.
#
def self.new(name, **options)
instance = super
if block_given?
yield instance
instance.call
else
instance
end
end
# @private
attr_reader :name, :args
# @param name [String]
# @param options [Hash]
# @option options [Boolean] :errors Whether to raise errors on non-zero
# exit codes.
# @option options [Boolean] :warnings Whether to print warnings to stderrr.
# @option options [String] :stdin Content to send to standard input stream.
# @example
# MiniMagick.identify(errors: false) do |identify|
# identify.help # returns exit status 1, which would otherwise throw an error
# end
def initialize(name, **options)
@name = name
@args = []
@options = options
end
##
# Executes the command that has been built up.
#
# @example
# mogrify = MiniMagick.mogrify
# mogrify.resize("500x500")
# mogrify << "path/to/image.jpg"
# mogrify.call # executes `mogrify -resize 500x500 path/to/image.jpg`
#
# @example
# mogrify = MiniMagick.mogrify
# # build the command
# mogrify.call do |stdout, stderr, status|
# # ...
# end
#
# @yield [Array] Optionally yields stdout, stderr, and exit status
#
# @return [String] Returns the output of the command
#
def call(**options)
options = @options.merge(options)
options[:warnings] = false if block_given?
shell = MiniMagick::Shell.new
stdout, stderr, status = shell.run(command, **options)
yield stdout, stderr, status if block_given?
stdout.chomp("\n")
end
##
# The currently built-up command.
#
# @return [Array<String>]
#
# @example
# mogrify = MiniMagick.mogrify
# mogrify.resize "500x500"
# mogrify.contrast
# mogrify.command #=> ["mogrify", "-resize", "500x500", "-contrast"]
#
def command
[*executable, *args]
end
##
# The executable used for this tool. Respects
# {MiniMagick::Configuration#cli_prefix}.
#
# @return [Array<String>]
#
# @example
# identify = MiniMagick.identify
# identify.executable #=> ["magick", "identify"]
#
# @example
# MiniMagick.configure do |config|
# config.cli_prefix = ['firejail', '--force']
# end
# identify = MiniMagick.identify
# identify.executable #=> ["firejail", "--force", "magick", "identify"]
#
def executable
exe = Array(MiniMagick.cli_prefix)
exe << "magick" if MiniMagick.imagemagick7? && name != "magick"
exe << "gm" if MiniMagick.graphicsmagick
exe << name
end
##
# Appends raw options, useful for appending image paths.
#
# @return [self]
#
def <<(arg)
args << arg.to_s
self
end
##
# Merges a list of raw options.
#
# @return [self]
#
def merge!(new_args)
new_args.each { |arg| self << arg }
self
end
##
# Changes the last operator to its "plus" form.
#
# @example
# MiniMagick.mogrify do |mogrify|
# mogrify.antialias.+
# mogrify.distort.+("Perspective", "0,0,4,5 89,0,45,46")
# end
# # executes `mogrify +antialias +distort Perspective '0,0,4,5 89,0,45,46'`
#
# @return [self]
#
def +(*values)
args[-1] = args[-1].sub(/^-/, '+')
self.merge!(values)
self
end
##
# Create an ImageMagick stack in the command (surround.
#
# @example
# MiniMagick.convert do |convert|
# convert << "wand.gif"
# convert.stack do |stack|
# stack << "wand.gif"
# stack.rotate(30)
# end
# convert.append.+
# convert << "images.gif"
# end
# # executes `convert wand.gif \( wizard.gif -rotate 30 \) +append images.gif`
#
def stack(*args)
self << "("
args.each do |value|
case value
when Hash then value.each { |key, value| send(key, *value) }
when String then self << value
end
end
yield self if block_given?
self << ")"
end
##
# Adds ImageMagick's pseudo-filename `-` for standard input.
#
# @example
# identify = MiniMagick.identify
# identify.stdin
# identify.call(stdin: image_content)
# # executes `identify -` with the given standard input
#
def stdin
self << "-"
end
##
# Adds ImageMagick's pseudo-filename `-` for standard output.
#
# @example
# content = MiniMagick.convert do |convert|
# convert << "input.jpg"
# convert.auto_orient
# convert.stdout
# end
# # executes `convert input.jpg -auto-orient -` which returns file contents
#
def stdout
self << "-"
end
##
# Define creator operator methods
#
# @example
# mogrify = MiniMagick::Tool.new("mogrify")
# mogrify.canvas("khaki")
# mogrify.command.join(" ") #=> "mogrify canvas:khaki"
#
CREATION_OPERATORS.each do |operator|
define_method(operator.tr('-', '_')) do |value = nil|
self << "#{operator}:#{value}"
self
end
end
##
# This option is a valid ImageMagick option, but it's also a Ruby method,
# so we need to override it so that it correctly acts as an option method.
#
def clone(*args)
self << '-clone'
self.merge!(args)
self
end
##
# Any undefined method will be transformed into a CLI option
#
# @example
# mogrify = MiniMagick::Tool.new("mogrify")
# mogrify.adaptive_blur("...")
# mogrify.foo_bar
# mogrify.command.join(" ") # => "mogrify -adaptive-blur ... -foo-bar"
#
def method_missing(name, *args)
option = "-#{name.to_s.tr('_', '-')}"
self << option
self.merge!(args)
self
end
# deprecated tool subclasses
%w[animate compare composite conjure convert display identify import magick mogrify montage stream].each do |tool|
const_set(tool.capitalize, Class.new(self) {
define_method(:initialize) do |*args|
super(tool, *args)
end
})
deprecate_constant(tool.capitalize)
end
end
end
|