class Exif::Tag::MakerNote::ImageAdjustment

0x0005 - ImageAdjustment

0x0080 - ImageAdjustment

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/nikon.rb, line 80
def to_s
  case @formatted
  when 0
    'Normal'
  when 1
    'Bright+'
  when 2
    'Bright-'
  when 3
    'Contrast+'
  when 4
    'Contrast-'
  else
    'Unknown'
  end
end