module Exif::Tag::Formatter::ULong

convert data to unsigned long(4 byte) value.

Public Instance Methods

_formatData(data) click to toggle source
# File lib/exifparser/tag.rb, line 80
def _formatData(data)
  decode_ulong(data)
end
format() click to toggle source
# File lib/exifparser/tag.rb, line 76
def format
  'Unsigned long'
end