Class: FormatParser::TIFFParser

Inherits:
Object
  • Object
show all
Includes:
EXIFParser, IOUtils
Defined in:
lib/parsers/tiff_parser.rb

Constant Summary collapse

MAGIC_LE =
[0x49, 0x49, 0x2A, 0x0].pack('C4')
MAGIC_BE =
[0x4D, 0x4D, 0x0, 0x2A].pack('C4')
HEADER_BYTES =
[MAGIC_LE, MAGIC_BE]
TIFF_MIME_TYPE =
'image/tiff'
ARW_MIME_TYPE =
'image/x-sony-arw'

Constants included from EXIFParser

EXIFParser::ORIENTATIONS

Instance Method Summary collapse

Methods included from EXIFParser

#exif_from_tiff_io

Methods included from IOUtils

#safe_read, #safe_skip

Instance Method Details

#arw?(exif_data) ⇒ Boolean

Similar to how exiftool determines the image type as ARW, we are implementing a check here github.com/exiftool/exiftool/blob/e969456372fbaf4b980fea8bb094d71033ac8bf7/lib/Image/ExifTool/Exif.pm#L929

Returns:

  • (Boolean)


57
58
59
# File 'lib/parsers/tiff_parser.rb', line 57

def arw?(exif_data)
  exif_data.compression == 6 && exif_data.new_subfile_type == 1 && exif_data.make == 'SONY'
end

#call(io) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/parsers/tiff_parser.rb', line 15

def call(io)
  io = FormatParser::IOConstraint.new(io)

  return unless HEADER_BYTES.include?(safe_read(io, 4))

  # Skip over the offset of the IFD,
  # EXIFR will re-read it anyway
  io.seek(io.pos + 2)
  return if cr2?(io)

  # The TIFF scanner in EXIFR is plenty good enough,
  # so why don't we use it? It does all the right skips
  # in all the right places.
  exif_data = exif_from_tiff_io(io)
  return unless exif_data

  w = exif_data.width || exif_data.pixel_x_dimension
  h = exif_data.height || exif_data.pixel_y_dimension

  format = arw?(exif_data) ? :arw : :tif
  mime_type = arw?(exif_data) ? ARW_MIME_TYPE : TIFF_MIME_TYPE
  FormatParser::Image.new(
    format: format,
    width_px: w,
    height_px: h,
    display_width_px: exif_data.rotated? ? h : w,
    display_height_px: exif_data.rotated? ? w : h,
    orientation: exif_data.orientation_sym,
    intrinsics: {exif: exif_data},
    content_type: mime_type,
  )
rescue EXIFR::MalformedTIFF
  nil
end

#cr2?(io) ⇒ Boolean

Returns:

  • (Boolean)


50
51
52
53
# File 'lib/parsers/tiff_parser.rb', line 50

def cr2?(io)
  io.seek(8)
  safe_read(io, 2) == 'CR'
end

#likely_match?(filename) ⇒ Boolean

Returns:

  • (Boolean)


11
12
13
# File 'lib/parsers/tiff_parser.rb', line 11

def likely_match?(filename)
  filename =~ /\.tiff?$/i
end