class Exif::Tag::MakerNote::SonyFlashExposureComp

0x0104 - Flash exposure compensation in EV

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 39
def to_s
  if @formatted.numerator == 0
    "0 EV"
  else
    @formatted.to_s + "EV"
  end
end