class Exif::Tag::MakerNote::FlashMode

0x1010 - FlashMode

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 133
def to_s
  case @formatted
  when 0
    'Auto'
  when 1
    'On'
  when 2
    'Off'
  when 3
    'Red-eye reduction'
  else
    'Unknown'
  end
end