Class: Exif::Tag::TIFF::PlanarConfiguration

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

Overview

0x011c - PlanarConfiguration

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



488
489
490
491
492
493
494
495
496
497
# File 'lib/exifparser/tag.rb', line 488

def to_s
  case @formatted
  when 1
    'chunky format'
  when 2
    'planar format'
  else
    'unknown'
  end
end