Module: MiniMagick::Configuration

Included in:
MiniMagick
Defined in:
lib/mini_magick/configuration.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#cliSymbol

Set whether you want to use [ImageMagick](www.imagemagick.org) or [GraphicsMagick](www.graphicsmagick.org).

Returns:

  • (Symbol)

    ‘:imagemagick` or `:minimagick`



12
13
14
# File 'lib/mini_magick/configuration.rb', line 12

def cli
  @cli
end

#cli_pathString

If you don’t have the CLI tools in your PATH, you can set the path to the executables.

Returns:

  • (String)


22
23
24
# File 'lib/mini_magick/configuration.rb', line 22

def cli_path
  @cli_path
end

#debugBoolean

When set to ‘true`, it outputs each command to STDOUT in their shell version.

Returns:

  • (Boolean)


39
40
41
# File 'lib/mini_magick/configuration.rb', line 39

def debug
  @debug
end

#loggerLogger

Logger for #debug, default is ‘MiniMagick::Logger.new(STDOUT)`, but you can override it, for example if you want the logs to be written to a file.

Returns:



47
48
49
# File 'lib/mini_magick/configuration.rb', line 47

def logger
  @logger
end

#processorObject



14
15
16
# File 'lib/mini_magick/configuration.rb', line 14

def processor
  @processor
end

#processor_pathObject



24
25
26
# File 'lib/mini_magick/configuration.rb', line 24

def processor_path
  @processor_path
end

#timeoutInteger

If you don’t want commands to take too long, you can set a timeout (in seconds).

Returns:

  • (Integer)


32
33
34
# File 'lib/mini_magick/configuration.rb', line 32

def timeout
  @timeout
end

#validate_on_createBoolean

If set to ‘true`, it will `identify` every newly created image, and raise `MiniMagick::Invalid` if the image is not valid. Useful for validating user input, although it adds a bit of overhead. Defaults to `true`.

Returns:

  • (Boolean)


55
56
57
# File 'lib/mini_magick/configuration.rb', line 55

def validate_on_create
  @validate_on_create
end

#validate_on_writeBoolean

If set to ‘true`, it will `identify` every image that gets written (with Image#write), and raise `MiniMagick::Invalid` if the image is not valid. Useful for validating that processing was sucessful, although it adds a bit of overhead. Defaults to `true`.

Returns:

  • (Boolean)


64
65
66
# File 'lib/mini_magick/configuration.rb', line 64

def validate_on_write
  @validate_on_write
end

Class Method Details

.extended(base) ⇒ Object



66
67
68
69
# File 'lib/mini_magick/configuration.rb', line 66

def self.extended(base)
  base.validate_on_create = true
  base.validate_on_write = true
end

Instance Method Details

#configure {|self| ... } ⇒ Object

Examples:

MiniMagick.configure do |config|
  config.cli = :graphicsmagick
  config.timeout = 5
end

Yields:

  • (self)


79
80
81
# File 'lib/mini_magick/configuration.rb', line 79

def configure
  yield self
end