class Exif::Tag::MakerNote::AutoExposureWarning

0x1302 - AE warning

Public Instance Methods

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