class Exif::Tag::TIFF::ResolutionUnit

0x0128 - ResolutionUnit

0x0128 - ResolutionUnit

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/tag.rb, line 506
def to_s
  case @formatted
  when 2
    'inch'
  when 3
    'centimeter'
  else
    'unknown'
  end
end