class Exif::Tag::MakerNote::SonyMultiBurstMode

0x1000 - Multi Burst Mode

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 125
def to_s
  case @formatted
  when 0
    "Off"
  when 1
    "On"
  else
    "Unknown"
  end
end