Sha256: 03b9a018945c74062fb92a4a2879b2722f7ecea97919f32992d4cba47443a116

Contents?: true

Size: 627 Bytes

Versions: 2

Compression:

Stored size: 627 Bytes

Contents

class Prawn::SVG::Elements::Root < Prawn::SVG::Elements::Base
  def initialize(document, source = document.root, parent_calls = [], state = ::Prawn::SVG::State.new)
    super
  end

  def parse
    state.viewport_sizing = @document.sizing
  end

  def apply
    if [nil, 'inherit', 'none', 'currentColor'].include?(properties.fill)
      add_call 'fill_color', '000000'
    end

    add_call 'transformation_matrix', @document.sizing.x_scale, 0, 0, @document.sizing.y_scale, 0, 0
    add_call 'transformation_matrix', 1, 0, 0, 1, -@document.sizing.x_offset, @document.sizing.y_offset
  end

  def container?
    true
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prawn-svg-0.32.0 lib/prawn/svg/elements/root.rb
prawn-svg-0.31.0 lib/prawn/svg/elements/root.rb