Class: Magick::OptionalMethodArguments

Inherits:
Object
  • Object
show all
Defined in:
lib/RMagick.rb

Overview

Collects non-specific optional method arguments

Instance Method Summary collapse

Constructor Details

#initialize(img) ⇒ OptionalMethodArguments

Returns a new instance of OptionalMethodArguments.



1888
1889
1890
# File 'lib/RMagick.rb', line 1888

def initialize(img)
   @img = img
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(mth, val) ⇒ Object

miscellaneous options like -verbose



1893
1894
1895
# File 'lib/RMagick.rb', line 1893

def method_missing(mth, val)
   @img.define(mth.to_s.tr('_', '-'), val)
end

Instance Method Details

#define(key, val = nil) ⇒ Object

set(key, val) corresponds to -set option:key val



1898
1899
1900
# File 'lib/RMagick.rb', line 1898

def define(key, val = nil)
   @img.define(key, val)
end

#highlight_color=(color) ⇒ Object

accepts Pixel object or color name



1903
1904
1905
1906
# File 'lib/RMagick.rb', line 1903

def highlight_color=(color)
   color = @img.to_color(color) if color.respond_to?(:to_color)
   @img.define("highlight-color", color)
end

#lowlight_color=(color) ⇒ Object

accepts Pixel object or color name



1909
1910
1911
1912
# File 'lib/RMagick.rb', line 1909

def lowlight_color=(color)
   color = @img.to_color(color) if color.respond_to?(:to_color)
   @img.define("lowlight-color", color)
end