Module Magick::RVG::TextConstructors
In: lib/rvg/text.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 Array Geometry HatchFill Draw lib/RMagick.rb lib/rvg/rvg.rb Magick Module: Magick

Methods that construct text objects within a container

Methods

text  

Public Instance methods

Draw a text string at (x,y). The string can be omitted. Optionally, define text chunks within the associated block.

[Source]

     # File lib/rvg/text.rb, line 177
177:         def text(x=0, y=0, text=nil, &block)
178:             t = Text.new(x, y, text, &block)
179:             @content << t
180:             return t
181:         end

[Validate]