class Exif::Tag::MakerNote::SonyImageStabilization

0xb026 - Image Stabilization

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 357
def to_s
  case @formatted
  when 0
    "Off"
  when 1
    "On"
  else
    "Unknown"
  end
end