class Exif::Tag::MakerNote::Sharpness

0x1001 - Sharpness

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/fujifilm.rb, line 43
def to_s
  case @formatted
  when 1,2
    'Weak'
  when 3
    'Standard'
  when 4
    'Strong'
  else
    'Unknown'
  end
end