Module: Prawn::Graphics::Dash

Included in:
Prawn::Graphics
Defined in:
lib/prawn/graphics/dash.rb

Instance Method Summary collapse

Instance Method Details

#dash(length = nil, options = {}) ⇒ Object Also known as: dash=

Sets the dash pattern for stroked lines and curves or return the current dash pattern setting if length is nil.

There are two ways to set the dash pattern:

  • If the parameter length is an Integer/Float, it specifies the length of the dash and of the gap. The length of the gap can be customized by setting the :space option.

    Examples:

    length = 3
      3 on, 3 off, 3 on, 3 off, ...
    length = 3, :space =2
      3 on, 2 off, 3 on, 2 off, ...
    
  • If the parameter length is an array, it specifies the lengths of alternating dashes and gaps. The :space option is ignored in this case.

    Examples:

    length = [2, 1]
      2 on, 1 off, 2 on, 1 off, ...
    length = [3, 1, 2, 3]
      3 on, 1 off, 2 on, 3 off, 3 on, 1 off, ...
    

Options may contain the keys :space and :phase

:space

The space between the dashes (only used when length is not an array)

:phase

The distance into the dash pattern at which to start the dash. For example, a phase of 0 starts at the beginning of the dash; whereas, if the phase is equal to the length of the dash, then stroking will begin at the beginning of the space. Default is 0.

Integers or Floats may be used for length and the option values. Dash units are in PDF points (1/72 inch).



54
55
56
57
58
59
60
61
62
# File 'lib/prawn/graphics/dash.rb', line 54

def dash(length=nil, options={})
  return current_dash_state if length.nil?

  self.current_dash_state = { :dash  => length,
            :space => length.kind_of?(Array) ? nil : options[:space] || length,
            :phase => options[:phase] || 0 }

  write_stroke_dash
end

#dashed?Boolean

Returns when stroke is dashed, false otherwise

Returns:

  • (Boolean)


75
76
77
# File 'lib/prawn/graphics/dash.rb', line 75

def dashed?
  current_dash_state != undashed_setting
end

#undashObject

Stops dashing, restoring solid stroked lines and curves



68
69
70
71
# File 'lib/prawn/graphics/dash.rb', line 68

def undash
  self.current_dash_state = undashed_setting
  write_stroke_dash
end

#write_stroke_dashObject



79
80
81
# File 'lib/prawn/graphics/dash.rb', line 79

def write_stroke_dash
  add_content dash_setting
end