Class: Magick::OptionalMethodArguments
- Inherits:
-
Object
- Object
- Magick::OptionalMethodArguments
- Defined in:
- lib/rmagick_internal.rb
Overview
Collects non-specific optional method arguments
Instance Method Summary collapse
-
#define(key, val = nil) ⇒ Object
set(key, val) corresponds to -set option:key val.
-
#highlight_color=(color) ⇒ Object
accepts Pixel object or color name.
-
#initialize(img) ⇒ OptionalMethodArguments
constructor
A new instance of OptionalMethodArguments.
-
#lowlight_color=(color) ⇒ Object
accepts Pixel object or color name.
-
#method_missing(mth, val) ⇒ Object
miscellaneous options like -verbose.
Constructor Details
#initialize(img) ⇒ OptionalMethodArguments
Returns a new instance of OptionalMethodArguments.
1826 1827 1828 |
# File 'lib/rmagick_internal.rb', line 1826 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
1831 1832 1833 |
# File 'lib/rmagick_internal.rb', line 1831 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
1836 1837 1838 |
# File 'lib/rmagick_internal.rb', line 1836 def define(key, val = nil) @img.define(key, val) end |
#highlight_color=(color) ⇒ Object
accepts Pixel object or color name
1841 1842 1843 1844 |
# File 'lib/rmagick_internal.rb', line 1841 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
1847 1848 1849 1850 |
# File 'lib/rmagick_internal.rb', line 1847 def lowlight_color=(color) color = @img.to_color(color) if color.respond_to?(:to_color) @img.define('lowlight-color', color) end |