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.



667
668
669
670
# File 'lib/fastimage.rb', line 667

def initialize(stream)
  @stream = stream
  parse_svg
end

Instance Method Details

#width_and_heightObject



672
673
674
675
676
677
678
679
680
# File 'lib/fastimage.rb', line 672

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