class Exif::Tag::MakerNote::FocusWarning

0x1301 - Focus warning

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 295
def to_s
  case @formatted
  when 0
    'Auto Focus good'
  when 1
    'Out of Focus'
  else
    'Unknown'
  end
end