class Exif::Tag::Exif::GainControl

0xa407 - GaincControl

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1547
def to_s
  case @formatted
  when 0
    'None'
  when 1
    'Low gain up'
  when 2
    'High gain up'
  when 3
    'Low gain down'
  when 4
    'High gain down'
  else
    'reserved'
  end
end