Class: Exif::Tag::MakerNote::SonyFullImageSize

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

Overview

0xb02b - Full Image Size

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



406
407
408
409
410
411
# File 'lib/exifparser/makernote/sony.rb', line 406

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

#to_sObject



413
414
415
# File 'lib/exifparser/makernote/sony.rb', line 413

def to_s
  %Q[#{@formatted[0]} x #{@formatted[1]}]
end