imghdr.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. """Recognize image file formats based on their first few bytes."""
  2. __all__ = ["what"]
  3. #-------------------------#
  4. # Recognize image headers #
  5. #-------------------------#
  6. def what(file, h=None):
  7. f = None
  8. try:
  9. if h is None:
  10. if isinstance(file, str):
  11. f = open(file, 'rb')
  12. h = f.read(32)
  13. else:
  14. location = file.tell()
  15. h = file.read(32)
  16. file.seek(location)
  17. for tf in tests:
  18. res = tf(h, f)
  19. if res:
  20. return res
  21. finally:
  22. if f: f.close()
  23. return None
  24. #---------------------------------#
  25. # Subroutines per image file type #
  26. #---------------------------------#
  27. tests = []
  28. def test_jpeg(h, f):
  29. """JPEG data in JFIF or Exif format"""
  30. if h[6:10] in (b'JFIF', b'Exif'):
  31. return 'jpeg'
  32. tests.append(test_jpeg)
  33. def test_png(h, f):
  34. if h.startswith(b'\211PNG\r\n\032\n'):
  35. return 'png'
  36. tests.append(test_png)
  37. def test_gif(h, f):
  38. """GIF ('87 and '89 variants)"""
  39. if h[:6] in (b'GIF87a', b'GIF89a'):
  40. return 'gif'
  41. tests.append(test_gif)
  42. def test_tiff(h, f):
  43. """TIFF (can be in Motorola or Intel byte order)"""
  44. if h[:2] in (b'MM', b'II'):
  45. return 'tiff'
  46. tests.append(test_tiff)
  47. def test_rgb(h, f):
  48. """SGI image library"""
  49. if h.startswith(b'\001\332'):
  50. return 'rgb'
  51. tests.append(test_rgb)
  52. def test_pbm(h, f):
  53. """PBM (portable bitmap)"""
  54. if len(h) >= 3 and \
  55. h[0] == ord(b'P') and h[1] in b'14' and h[2] in b' \t\n\r':
  56. return 'pbm'
  57. tests.append(test_pbm)
  58. def test_pgm(h, f):
  59. """PGM (portable graymap)"""
  60. if len(h) >= 3 and \
  61. h[0] == ord(b'P') and h[1] in b'25' and h[2] in b' \t\n\r':
  62. return 'pgm'
  63. tests.append(test_pgm)
  64. def test_ppm(h, f):
  65. """PPM (portable pixmap)"""
  66. if len(h) >= 3 and \
  67. h[0] == ord(b'P') and h[1] in b'36' and h[2] in b' \t\n\r':
  68. return 'ppm'
  69. tests.append(test_ppm)
  70. def test_rast(h, f):
  71. """Sun raster file"""
  72. if h.startswith(b'\x59\xA6\x6A\x95'):
  73. return 'rast'
  74. tests.append(test_rast)
  75. def test_xbm(h, f):
  76. """X bitmap (X10 or X11)"""
  77. if h.startswith(b'#define '):
  78. return 'xbm'
  79. tests.append(test_xbm)
  80. def test_bmp(h, f):
  81. if h.startswith(b'BM'):
  82. return 'bmp'
  83. tests.append(test_bmp)
  84. def test_webp(h, f):
  85. if h.startswith(b'RIFF') and h[8:12] == b'WEBP':
  86. return 'webp'
  87. tests.append(test_webp)
  88. def test_exr(h, f):
  89. if h.startswith(b'\x76\x2f\x31\x01'):
  90. return 'exr'
  91. tests.append(test_exr)
  92. #--------------------#
  93. # Small test program #
  94. #--------------------#
  95. def test():
  96. import sys
  97. recursive = 0
  98. if sys.argv[1:] and sys.argv[1] == '-r':
  99. del sys.argv[1:2]
  100. recursive = 1
  101. try:
  102. if sys.argv[1:]:
  103. testall(sys.argv[1:], recursive, 1)
  104. else:
  105. testall(['.'], recursive, 1)
  106. except KeyboardInterrupt:
  107. sys.stderr.write('\n[Interrupted]\n')
  108. sys.exit(1)
  109. def testall(list, recursive, toplevel):
  110. import sys
  111. import os
  112. for filename in list:
  113. if os.path.isdir(filename):
  114. print(filename + '/:', end=' ')
  115. if recursive or toplevel:
  116. print('recursing down:')
  117. import glob
  118. names = glob.glob(os.path.join(filename, '*'))
  119. testall(names, recursive, 0)
  120. else:
  121. print('*** directory (use -r) ***')
  122. else:
  123. print(filename + ':', end=' ')
  124. sys.stdout.flush()
  125. try:
  126. print(what(filename))
  127. except OSError:
  128. print('*** not found ***')
  129. if __name__ == '__main__':
  130. test()