Object
The orientation of the image with respect to the rows and columns.
Debugging output.
# File lib/exifr/tiff.rb, line 263 def inspect "\#<EXIFR::TIFF::Orientation:#{@type}(#{@value})>" end
Rotate and/or flip for proper viewing.
# File lib/exifr/tiff.rb, line 268 def transform_rmagick(img) case @type when :TopRight ; img.flop when :BottomRight ; img.rotate(180) when :BottomLeft ; img.flip when :LeftTop ; img.rotate(90).flop when :RightTop ; img.rotate(90) when :RightBottom ; img.rotate(270).flop when :LeftBottom ; img.rotate(270) else img end end
Generated with the Darkfish Rdoc Generator 2.