class Exif::Tag::MakerNote::ActiveD_Lighting

0x0022 ActiveD_Lighting

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/nikon2.rb, line 205
def to_s
  case @formatted
  when 0
    "Off"
  when 1
    "Low"
  when 3
    "Normal"
  when 5
    "Hight"
  when 7
    "Extra High"
  when 65535
    "Auto"
  else
    ""
  end
end