Module Magick::RVG::Describable
In: lib/rvg/describable.rb
Enum GeometryValue Stylable RVG\n[lib/rvg/clippath.rb\nlib/rvg/container.rb\nlib/rvg/deep_equal.rb\nlib/rvg/describable.rb\nlib/rvg/embellishable.rb\nlib/rvg/misc.rb\nlib/rvg/paint.rb\nlib/rvg/pathdata.rb\nlib/rvg/rvg.rb\nlib/rvg/stretchable.rb\nlib/rvg/stylable.rb\nlib/rvg/text.rb\nlib/rvg/transformable.rb\nlib/rvg/units.rb] Transformable Stretchable Embellishable Describable Duplicatable Comparable Image ImageList Enumerable Geometry OptionalMethodArguments HatchFill Draw lib/RMagick.rb lib/rvg/container.rb ObjectData Application Pre_ObjectData_Descriptor Envelope Post_ObjectData_Descriptor IPTC Magick dot/m_14_0.png

This module defines a number of metadata attributes.

Methods

desc   metadata   title  

Attributes

desc  [W]  Sets the object description
metadata  [W]  Sets the object metadata
title  [W]  Sets the object title

Public Instance methods

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 39
39:             def desc
40:                 @desc.to_s
41:             end

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

[Source]

    # File lib/rvg/describable.rb, line 45
45:             def metadata
46:                 @metadata.to_s
47:             end

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

[Source]

    # File lib/rvg/describable.rb, line 33
33:             def title
34:                 @title.to_s
35:             end

[Validate]