Class: Exif::Tag::MakerNote::Cont_Bracket

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

Overview

0x1100 - Cont_Bracket

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, #processData, #value

Constructor Details

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

Instance Method Details

#nameObject



262
263
264
# File 'lib/exifparser/makernote/fujifilm.rb', line 262

def name
  'Continuous/AutoBracket'
end

#to_sObject



251
252
253
254
255
256
257
258
259
260
# File 'lib/exifparser/makernote/fujifilm.rb', line 251

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