Skip to content

Commit 3b56b3b

Browse files
mohamadmansourXmoemansour03@gmail.commerwokambv
authored
bpo-44539: Support recognizing JPEG files without JFIF or Exif markers (GH-26964)
Co-authored-by: moemansour03@gmail.com <m.mansour@tecfrac.com> Co-authored-by: Éric Araujo <merwok@netwok.org> Co-authored-by: Łukasz Langa <lukasz@langa.pl>
1 parent 6564656 commit 3b56b3b

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

Lib/imghdr.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,11 @@ def what(file, h=None):
3535
tests = []
3636

3737
def test_jpeg(h, f):
38-
"""JPEG data in JFIF or Exif format"""
38+
"""JPEG data with JFIF or Exif markers; and raw JPEG"""
3939
if h[6:10] in (b'JFIF', b'Exif'):
4040
return 'jpeg'
41+
elif h[:4] == b'\xff\xd8\xff\xdb':
42+
return 'jpeg'
4143

4244
tests.append(test_jpeg)
4345

Lib/test/imghdrdata/python-raw.jpg

525 Bytes
Loading

Lib/test/test_imghdr.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
('python.pgm', 'pgm'),
1717
('python.pbm', 'pbm'),
1818
('python.jpg', 'jpeg'),
19+
('python-raw.jpg', 'jpeg'), # raw JPEG without JFIF/EXIF markers
1920
('python.ras', 'rast'),
2021
('python.sgi', 'rgb'),
2122
('python.tiff', 'tiff'),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Added support for recognizing JPEG files without JFIF or Exif markers.

0 commit comments

Comments
 (0)