Class: FastImage::Exif
- Inherits:
-
Object
- Object
- FastImage::Exif
- Defined in:
- lib/fastimage.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#height ⇒ Object
readonly
Returns the value of attribute height.
-
#orientation ⇒ Object
readonly
Returns the value of attribute orientation.
-
#width ⇒ Object
readonly
Returns the value of attribute width.
Instance Method Summary collapse
-
#initialize(stream) ⇒ Exif
constructor
A new instance of Exif.
- #rotated? ⇒ Boolean
Constructor Details
#initialize(stream) ⇒ Exif
622 623 624 625 626 |
# File 'lib/fastimage.rb', line 622 def initialize(stream) @stream = stream @width, @height, @orientation = nil parse_exif end |
Instance Attribute Details
#height ⇒ Object (readonly)
Returns the value of attribute height.
620 621 622 |
# File 'lib/fastimage.rb', line 620 def height @height end |
#orientation ⇒ Object (readonly)
Returns the value of attribute orientation.
620 621 622 |
# File 'lib/fastimage.rb', line 620 def orientation @orientation end |
#width ⇒ Object (readonly)
Returns the value of attribute width.
620 621 622 |
# File 'lib/fastimage.rb', line 620 def width @width end |
Instance Method Details
#rotated? ⇒ Boolean
628 629 630 |
# File 'lib/fastimage.rb', line 628 def rotated? @orientation >= 5 end |