Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
4acb1899
Kaydet (Commit)
4acb1899
authored
Agu 16, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#3424 rearrange the order of tests in imghdr to place more common types first
üst
eb90b788
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
32 deletions
+32
-32
imghdr.py
Lib/imghdr.py
+32
-32
No files found.
Lib/imghdr.py
Dosyayı görüntüle @
4acb1899
...
...
@@ -34,12 +34,25 @@ def what(file, h=None):
tests
=
[]
def
test_
rgb
(
h
,
f
):
"""
SGI image library
"""
if
h
[
:
2
]
==
'
\001\332
'
:
return
'
rgb
'
def
test_
jpeg
(
h
,
f
):
"""
JPEG data in JFIF format
"""
if
h
[
6
:
10
]
==
'JFIF
'
:
return
'
jpeg
'
tests
.
append
(
test_rgb
)
tests
.
append
(
test_jpeg
)
def
test_exif
(
h
,
f
):
"""JPEG data in Exif format"""
if
h
[
6
:
10
]
==
'Exif'
:
return
'jpeg'
tests
.
append
(
test_exif
)
def
test_png
(
h
,
f
):
if
h
[:
8
]
==
"
\211
PNG
\r\n\032\n
"
:
return
'png'
tests
.
append
(
test_png
)
def
test_gif
(
h
,
f
):
"""GIF ('87 and '89 variants)"""
...
...
@@ -48,6 +61,20 @@ def test_gif(h, f):
tests
.
append
(
test_gif
)
def
test_tiff
(
h
,
f
):
"""TIFF (can be in Motorola or Intel byte order)"""
if
h
[:
2
]
in
(
'MM'
,
'II'
):
return
'tiff'
tests
.
append
(
test_tiff
)
def
test_rgb
(
h
,
f
):
"""SGI image library"""
if
h
[:
2
]
==
'
\001\332
'
:
return
'rgb'
tests
.
append
(
test_rgb
)
def
test_pbm
(
h
,
f
):
"""PBM (portable bitmap)"""
if
len
(
h
)
>=
3
and
\
...
...
@@ -72,13 +99,6 @@ def test_ppm(h, f):
tests
.
append
(
test_ppm
)
def
test_tiff
(
h
,
f
):
"""TIFF (can be in Motorola or Intel byte order)"""
if
h
[:
2
]
in
(
'MM'
,
'II'
):
return
'tiff'
tests
.
append
(
test_tiff
)
def
test_rast
(
h
,
f
):
"""Sun raster file"""
if
h
[:
4
]
==
'
\x59\xA6\x6A\x95
'
:
...
...
@@ -94,32 +114,12 @@ def test_xbm(h, f):
tests
.
append
(
test_xbm
)
def
test_jpeg
(
h
,
f
):
"""JPEG data in JFIF format"""
if
h
[
6
:
10
]
==
'JFIF'
:
return
'jpeg'
tests
.
append
(
test_jpeg
)
def
test_exif
(
h
,
f
):
"""JPEG data in Exif format"""
if
h
[
6
:
10
]
==
'Exif'
:
return
'jpeg'
tests
.
append
(
test_exif
)
def
test_bmp
(
h
,
f
):
if
h
[:
2
]
==
'BM'
:
return
'bmp'
tests
.
append
(
test_bmp
)
def
test_png
(
h
,
f
):
if
h
[:
8
]
==
"
\211
PNG
\r\n\032\n
"
:
return
'png'
tests
.
append
(
test_png
)
#--------------------#
# Small test program #
#--------------------#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment