Class: Magick::RVG::Text

Inherits:
TextBase show all
Defined in:
lib/rvg/text.rb

Overview

class Tspan

Instance Method Summary collapse

Methods inherited from TextBase

#d, #rotate, #tspan

Methods included from Duplicatable

#deep_copy

Methods included from Stylable

#styles

Constructor Details

#initialize(x = 0, y = 0, text = nil, &block) ⇒ Text

Define a text string starting at [x, y]. Use the RVG::TextConstructors#text method to create Text objects in a container.

container.text(100, 100, "Simple text").styles(:font=>'Arial')

Text objects can contain Tspan objects.

container.text(100, 100).styles(:font=>'Arial') do |t|
   t.tspan("Red text").styles(:fill=>'red')
   t.tspan("Blue text").styles(:fill=>'blue')
end


146
147
148
149
# File 'lib/rvg/text.rb', line 146

def initialize(x = 0, y = 0, text = nil, &block)
  @cx, @cy = Magick::RVG.convert_to_float(x, y)
  super(text, &block)
end

Instance Method Details

#tref(obj, x = nil, y = nil) ⇒ Object

Reference a Tspan object. x and y are just like x and y in RVG::TextBase#tspan

Raises:

  • (ArgumentError)


153
154
155
156
157
158
159
160
161
# File 'lib/rvg/text.rb', line 153

def tref(obj, x = nil, y = nil)
  raise ArgumentError, "wrong argument type #{obj.class} (expected Tspan)" unless obj.is_a?(Tspan)

  obj = obj.deep_copy
  obj.parent = self
  tref = Tref.new(obj, x, y, self)
  @tspans << tref
  tref
end