class Exif::Tag::MakerNote::SonyWhiteBalance

0x0115 - White balance

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 89
def to_s
  case @formatted
  when 0x00
    "Auto"
  when 0x01
    "Color Temperature/Color Filter"
  when 0x10
    "Daylight"
  when 0x20
    "Cloudy"
  when 0x30
    "Shade"
  when 0x40
    "Tungsten"
  when 0x50
    "Flash"
  when 0x60
    "Fluorescent"
  when 0x70
    "Custom"
  else
    "Unknown"
  end
end