class Exif::Tag::Exif::Saturation

0xa409 - Saturation

Public Instance Methods

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