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.



1019
1020
1021
1022
1023
# File 'lib/fastimage.rb', line 1019

def initialize(stream)
  @stream = stream
  @width, @height, @ratio, @viewbox_width, @viewbox_height = nil
  parse_svg
end

Instance Method Details

#width_and_heightObject



1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
# File 'lib/fastimage.rb', line 1025

def width_and_height
  if @width && @height
    [@width, @height]
  elsif @width && @ratio
    [@width, @width / @ratio]
  elsif @height && @ratio
    [@height * @ratio, @height]
  elsif @viewbox_width && @viewbox_height
    [@viewbox_width, @viewbox_height]
  else
    nil
  end
end