class Exif::Tag::MakerNote::SonyAutoHDR

0x200a - High Definition Range Mode

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 177
def to_s
  case @formatted
  when 0x00000
    "Off"
  when 0x10001
    "Auto"
  when 0x10010
    "1"
  when 0x10012
    "2"
  when 0x10014
    "3"
  when 0x10016
    "4"
  when 0x10018
    "5"
  else
    "Unknown"
  end
end