Sha256: 8ce11ae4a96e13ac626797d1f088e6d1b39d1b5ab605c73aa132d35000f68ff7

Contents?: true

Size: 1.41 KB

Versions: 4

Compression:

Stored size: 1.41 KB

Contents

module Prawn::SVG::Attributes::Stroke
  CAP_STYLE_TRANSLATIONS = {"butt" => :butt, "round" => :round, "square" => :projecting_square}
  JOIN_STYLE_TRANSLATIONS = {"miter" => :miter, "round" => :round, "bevel" => :bevel}

  def parse_stroke_attributes_and_call
    if width_string = properties.stroke_width
      width = pixels(width_string)
      state.stroke_width = width
      add_call('line_width', width)
    end

    if (linecap = properties.stroke_linecap) && linecap != 'inherit'
      add_call('cap_style', CAP_STYLE_TRANSLATIONS.fetch(linecap, :butt))
    end
    
    if (linejoin = properties.stroke_linejoin) && linejoin != 'inherit'
      add_call('join_style', JOIN_STYLE_TRANSLATIONS.fetch(linejoin, :miter))
    end

    if dasharray = properties.stroke_dasharray
      case dasharray
      when 'inherit'
        # don't do anything
      when 'none'
        add_call('undash')
      else
        array = dasharray.split(Prawn::SVG::Elements::COMMA_WSP_REGEXP)
        array *= 2 if array.length % 2 == 1
        number_array = array.map {|value| pixels(value)}

        if number_array.any? {|number| number < 0}
          @document.warnings << "stroke-dasharray cannot have negative numbers; treating as 'none'"
          add_call('undash')
        elsif number_array.inject(0) {|a, b| a + b} == 0
          add_call('undash')
        else
          add_call('dash', number_array)
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
prawn-svg-0.34.2 lib/prawn/svg/attributes/stroke.rb
prawn-svg-0.34.1 lib/prawn/svg/attributes/stroke.rb
prawn-svg-0.34.0 lib/prawn/svg/attributes/stroke.rb
prawn-svg-0.33.0 lib/prawn/svg/attributes/stroke.rb