Class: Exif::Tag::MakerNote::AutoExposureWarning
- Defined in:
- lib/exifparser/makernote/fujifilm.rb
Overview
0x1302 - AE 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_s ⇒ Object
313 314 315 316 317 318 319 320 321 322 |
# File 'lib/exifparser/makernote/fujifilm.rb', line 313 def to_s case @formatted when 0 'Auto exposure good' when 1 'Over exposure' else 'Unknown' end end |