blob: c60df24c5a17e1d1150570c6411124215298a13f [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`imghdr` --- Determine the type of an image
2================================================
3
4.. module:: imghdr
5 :synopsis: Determine the type of image contained in a file or byte stream.
6
Raymond Hettinger469271d2011-01-27 20:38:46 +00007**Source code:** :source:`Lib/imghdr.py`
8
9--------------
Georg Brandl116aa622007-08-15 14:28:22 +000010
11The :mod:`imghdr` module determines the type of image contained in a file or
12byte stream.
13
14The :mod:`imghdr` module defines the following function:
15
16
Georg Brandl3dd33882009-06-01 17:35:27 +000017.. function:: what(filename, h=None)
Georg Brandl116aa622007-08-15 14:28:22 +000018
19 Tests the image data contained in the file named by *filename*, and returns a
20 string describing the image type. If optional *h* is provided, the *filename*
21 is ignored and *h* is assumed to contain the byte stream to test.
22
23The following image types are recognized, as listed below with the return value
24from :func:`what`:
25
26+------------+-----------------------------------+
27| Value | Image format |
28+============+===================================+
29| ``'rgb'`` | SGI ImgLib Files |
30+------------+-----------------------------------+
31| ``'gif'`` | GIF 87a and 89a Files |
32+------------+-----------------------------------+
33| ``'pbm'`` | Portable Bitmap Files |
34+------------+-----------------------------------+
35| ``'pgm'`` | Portable Graymap Files |
36+------------+-----------------------------------+
37| ``'ppm'`` | Portable Pixmap Files |
38+------------+-----------------------------------+
39| ``'tiff'`` | TIFF Files |
40+------------+-----------------------------------+
41| ``'rast'`` | Sun Raster Files |
42+------------+-----------------------------------+
43| ``'xbm'`` | X Bitmap Files |
44+------------+-----------------------------------+
45| ``'jpeg'`` | JPEG data in JFIF or Exif formats |
46+------------+-----------------------------------+
47| ``'bmp'`` | BMP files |
48+------------+-----------------------------------+
49| ``'png'`` | Portable Network Graphics |
50+------------+-----------------------------------+
Serhiy Storchaka2f8dca72014-05-25 11:45:37 +030051| ``'webp'`` | WebP files |
52+------------+-----------------------------------+
R David Murray2f608202014-06-26 12:27:57 -040053| ``'exr'`` | OpenEXR Files |
54+------------+-----------------------------------+
55
56.. versionadded:: 3.5
57 The *exr* format was added.
Serhiy Storchaka2f8dca72014-05-25 11:45:37 +030058
59.. versionchanged:: 3.5
60 The *webp* type was added.
Georg Brandl116aa622007-08-15 14:28:22 +000061
Georg Brandl116aa622007-08-15 14:28:22 +000062You can extend the list of file types :mod:`imghdr` can recognize by appending
63to this variable:
64
65
66.. data:: tests
67
68 A list of functions performing the individual tests. Each function takes two
69 arguments: the byte-stream and an open file-like object. When :func:`what` is
70 called with a byte-stream, the file-like object will be ``None``.
71
72 The test function should return a string describing the image type if the test
73 succeeded, or ``None`` if it failed.
74
75Example::
76
77 >>> import imghdr
Petri Lehtinen9f74c6c2013-02-23 19:26:56 +010078 >>> imghdr.what('bass.gif')
Georg Brandl116aa622007-08-15 14:28:22 +000079 'gif'
80