class Exif::Tag::MakerNote::SonyTeleconverter

0x0105 - Teleconverter Model

Public Instance Methods

to_s() click to toggle source
# File lib/exifparser/makernote/sony.rb, line 54
def to_s
  case @formatted
  when 0x00
    "None"
  when 0x48
    "Minolta AF 2x APO (D)"
  when 0x50
    "Minolta AF 2x APO II"
  when 0x88
    "Minolta AF 1.4x APO (D)"
  when 0x90
    "Minolta AF 1.4x APO II"
  else
    "Unknown"
  end
end