This module defines a number of metadata attributes.
Returns the description of this object. The RVG object description is stored as the ‘desc’ property on the image
[Source]
# File lib/rvg/describable.rb, line 38 38: def desc 39: @desc.to_s 40: end
Returns additional metadata of this object. The RVG object metadata are stored as the ‘metadata’ property on the image
# File lib/rvg/describable.rb, line 44 44: def metadata 45: @metadata.to_s 46: end
Returns the title of this object. The RVG object title is stored as the ‘title’ property on the image
# File lib/rvg/describable.rb, line 32 32: def title 33: @title.to_s 34: end
[Validate]