class Exif::Tag::MakerNote::White

0x1002 - White

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 63
def to_s
  case @formatted
  when 0
    'Auto'
  when 256
    'Daylight'
  when 512
    'Cloudy'
  when 768
    'DaylightColor-fluorescence'
  when 769
    'DaywhiteColor-fluorescence'
  when 770
    'WhiteColor-fluorescence'
  when 1024
    'Incandescence'
  when 3840
    'Custom white balance'
  else
    'Unknown'
  end
end