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

Instance Attribute Details

#descObject

Returns the description of this object. The RVG object description is stored as the ‘desc’ property on the image



38
39
40
# File 'lib/rvg/describable.rb', line 38

def desc
    @desc.to_s
end

#metadataObject

Returns additional metadata of this object. The RVG object metadata are stored as the ‘metadata’ property on the image



44
45
46
# File 'lib/rvg/describable.rb', line 44

def 
    @metadata.to_s
end

#titleObject

Returns the title of this object. The RVG object title is stored as the ‘title’ property on the image



32
33
34
# File 'lib/rvg/describable.rb', line 32

def title
    @title.to_s
end