Class: Exif::Tag::TIFF::PrimaryChromaticities

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

Overview

0x013f - PrimaryChromaticities

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

Constructor Details

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

Instance Method Details

#processDataObject



725
726
727
728
729
730
# File 'lib/exifparser/tag.rb', line 725

def processData
  @formatted = []
  partition_data(@count) do |data|
    @formatted.push _formatData(data)
  end
end

#to_sObject



732
733
734
# File 'lib/exifparser/tag.rb', line 732

def to_s
  @formatted.join(",")
end