class Exif::Tag::MakerNote::SonyPreviewImageSize
0xb02c - Preview Image Size
Public Instance Methods
processData()
click to toggle source
# File lib/exifparser/makernote/sony.rb, line 422 def processData @formatted = [] partition_data(@count) do |data| @formatted.push _formatData(data) end end
to_s()
click to toggle source
# File lib/exifparser/makernote/sony.rb, line 429 def to_s %Q[#{@formatted[0]} x #{@formatted[1]}] end