class Exif::Tag::MakerNote::BlurWarning

0x1300 - Blur warning

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 277
def to_s
  case @formatted
  when 0
    'No blur warning'
  when 1
    'Blur warning'
  else
    'Unknown'
  end
end