class Exif::Tag::Exif::SceneType

0xa301 - SceneType

Public Instance Methods

_format0(data) click to toggle source
# File lib/exifparser/tag.rb, line 1432
def _format0(data)
  data[0]
end
to_s() click to toggle source
# File lib/exifparser/tag.rb, line 1436
def to_s
  case @formatted
  when 0x01
    'Directory photographed'
  else
    'Unknown'
  end
end