class Exif::Tag::MakerNote::PictureMode

0x1031 - PictureMode

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 215
def to_s
  case @formatted
  when 0
    'Auto'
  when 1
    'Portrait scene'
  when 2
    'Landscape scene'
  when 4
    'Sports scene'
  when 5
    'Night scene'
  when 6
    'Program Auto Exposure'
  when 256
    'Aperture prior Auto Exposure'
  when 512
    'Shutter prior Auto Exposure'
  when 768
    'Manual exposure'
  else
    'Unknown'
  end
end