Class: Exif::Tag::MakerNote::SonyMultiBurstMode

Inherits:
Base
  • Object
show all
Defined in:
lib/exifparser/makernote/sony.rb

Overview

0x1000 - Multi Burst Mode

Instance Attribute Summary

Attributes inherited from Base

#IFD, #count, #data, #dataPos, #pos, #tagID

Instance Method Summary collapse

Methods inherited from Base

#formatExposureTime, #formatFNumber, #formatFocalLength, #formatLatLon, #initialize, #inspect, #name, #processData, #value

Constructor Details

This class inherits a constructor from Exif::Tag::Base

Instance Method Details

#to_sObject



125
126
127
128
129
130
131
132
133
134
# File 'lib/exifparser/makernote/sony.rb', line 125

def to_s
  case @formatted
  when 0
    "Off"
  when 1
    "On"
  else
    "Unknown"
  end
end