class Exif::Tag::Exif::SubjectLocation

0xa214 - SubjectLocation

Public Instance Methods

processData() click to toggle source
# File lib/exifparser/tag.rb, line 1373
def processData
  @formatted = []
  partition_data(@count) do |data|
    @formatted.push _formatData(data)
  end
end
to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1380
def to_s
  "[%d, %d]"%[*@formatted]
end