class Exif::Tag::MakerNote::CCDSensitivity

0x0006 - CCDSensitivity

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/nikon.rb, line 104
  def to_s
    case @formatted
    when 0
      'ISO80'
    when 2
      'ISO160'
    when 4
      'ISO320'
    when 5
      'ISO100'
    else
      "Unknown(#{@formatted})"
    end
end