class Exif::Tag::Exif::Contrast

0xa408 - Contrast

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1569
def to_s
  case @formatted
  when 0
    'Normal'
  when 1
    'Soft'
  when 2
    'Hard'
  else
    'reserved'
  end
end