class Exif::Tag::MakerNote::Cont_Bracket

0x1100 - Cont_Bracket

Public Instance Methods

name() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 262
def name
  'Continuous/AutoBracket'
end
to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 251
def to_s
  case @formatted
  when 0
    'Off'
  when 1
    'On'
  else
    'Unknown'
  end
end