class Exif::Tag::MakerNote::JpegQual

0x0201 - JpegQual

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/olympus.rb, line 74
def to_s
  case @formatted
  when 1
    "Standard Quality"
  when 2
    "High Quality"
  when 3
    "Super High Quality"
  else
    "Unknown"
  end
end