Module: Magick::RVG::Describable
- Included in:
- Magick::RVG, ClipPath, Group, Image
- Defined in:
- lib/rvg/describable.rb
Overview
– Corresponds to SVG’s Description.class ++ This module defines a number of metadata attributes.
Instance Attribute Summary collapse
-
#desc ⇒ Object
Returns the description of this object.
-
#metadata ⇒ Object
Returns additional metadata of this object.
-
#title ⇒ Object
Returns the title of this object.
Instance Attribute Details
#desc ⇒ Object
Returns the description of this object. The RVG object description is stored as the ‘desc’ property on the image
36 37 38 |
# File 'lib/rvg/describable.rb', line 36 def desc @desc.to_s end |
#metadata ⇒ Object
Returns additional metadata of this object. The RVG object metadata are stored as the ‘metadata’ property on the image
42 43 44 |
# File 'lib/rvg/describable.rb', line 42 def @metadata.to_s end |
#title ⇒ Object
Returns the title of this object. The RVG object title is stored as the ‘title’ property on the image
30 31 32 |
# File 'lib/rvg/describable.rb', line 30 def title @title.to_s end |