Class: FastImage::Svg

Inherits:
Object
  • Object
show all
Defined in:
lib/fastimage.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(stream) ⇒ Svg

Returns a new instance of Svg.



680
681
682
683
# File 'lib/fastimage.rb', line 680

def initialize(stream)
  @stream = stream
  parse_svg
end

Instance Method Details

#width_and_heightObject



685
686
687
688
689
690
691
692
693
# File 'lib/fastimage.rb', line 685

def width_and_height
  if @width && @height
    [@width, @height]
  elsif @width && @ratio
    [@width, @width / @ratio]
  elsif @height && @ratio
    [@height * @ratio, @height]
  end
end