class Exif::Tag::MakerNote::Color

0x1003 - Color

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 93
def to_s
  case @formatted
  when 0
    'Normal(STD)'
  when 256
    'High(HARD)'
  when
    'Low(ORG)'
  else
    'Unknown'
  end
end