Class: Exif::Tag::MakerNote::BlurWarning

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

Overview

0x1300 - Blur warning

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



277
278
279
280
281
282
283
284
285
286
# File 'lib/exifparser/makernote/fujifilm.rb', line 277

def to_s
  case @formatted
  when 0
    'No blur warning'
  when 1
    'Blur warning'
  else
    'Unknown'
  end
end