class Exif::Tag::TIFF::BitsPerSample

0x0102 - BitsPerSample

Public Instance Methods

processData() click to toggle source
# File lib/exifparser/tag.rb, line 392
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 399
def to_s
  @formatted.join(",")
end