Class: Exif::Tag::MakerNote::SonyLongExposureNoiseReduction

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

Overview

0xb04e - Long Exposure Noise Reduction

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



617
618
619
620
621
622
623
624
625
# File 'lib/exifparser/makernote/sony.rb', line 617

def to_s
  if    @formatted == 0
    "Off"
  elsif @formatted == 1
    "On"
  else
    @formatted.to_s + " (Unknown)"
  end
end