My favorites
▼
|
Sign in
plsamples
Samples using the pylons Frameworks
Project Home
Downloads
Wiki
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
GrandMonde
/
getimageinfo.py
r184
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
49
50
51
52
53
54
55
56
57
58
59
60
61
import StringIO
import struct
def getImageInfo(data):
data = str(data)
size = len(data)
height = -1
width = -1
content_type = ''
# handle GIFs
if (size >= 10) and data[:6] in ('GIF87a', 'GIF89a'):
# Check to see if content_type is correct
content_type = 'image/gif'
w, h = struct.unpack("<HH", data[6:10])
width = int(w)
height = int(h)
# See PNG 2. Edition spec (http://www.w3.org/TR/PNG/)
# Bytes 0-7 are below, 4-byte chunk length, then 'IHDR'
# and finally the 4-byte width, height
elif ((size >= 24) and data.startswith('\211PNG\r\n\032\n')
and (data[12:16] == 'IHDR')):
content_type = 'image/png'
w, h = struct.unpack(">LL", data[16:24])
width = int(w)
height = int(h)
# Maybe this is for an older PNG version.
elif (size >= 16) and data.startswith('\211PNG\r\n\032\n'):
# Check to see if we have the right content type
content_type = 'image/png'
w, h = struct.unpack(">LL", data[8:16])
width = int(w)
height = int(h)
# handle JPEGs
elif (size >= 2) and data.startswith('\377\330'):
content_type = 'image/jpeg'
jpeg = StringIO.StringIO(data)
jpeg.read(2)
b = jpeg.read(1)
try:
while (b and ord(b) != 0xDA):
while (ord(b) != 0xFF): b = jpeg.read(1)
while (ord(b) == 0xFF): b = jpeg.read(1)
if (ord(b) >= 0xC0 and ord(b) <= 0xC3):
jpeg.read(3)
h, w = struct.unpack(">HH", jpeg.read(4))
break
else:
jpeg.read(int(struct.unpack(">H", jpeg.read(2))[0])-2)
b = jpeg.read(1)
width = int(w)
height = int(h)
except struct.error:
pass
except ValueError:
pass
return content_type, width, height
Show details
Hide details
Change log
r108
by florent.pigout on Sep 4, 2008
Diff
Finish!
Go to:
/trunk/GrandMonde/author.py
/trunk/GrandMonde/category.py
/trunk/GrandMonde/collection.py
/trunk/GrandMonde/contact.py
/trunk/GrandMonde/gdata
/trunk/GrandMonde/getimageinfo.py
/trunk/GrandMonde/grandmonde.py
/trunk/GrandMonde/language.py
/trunk/GrandMonde/model.py
/trunk/GrandMonde/picture.py
/trunk/GrandMonde/settings.py
/trunk/GrandMonde/size.py
...nk/GrandMonde/static/img/content
...nk/GrandMonde/static/img/gallery
...onde/static/img/gallery/annees80
...lery/annees80/annees80_bally.jpg
...ry/annees80/annees80_citroen.jpg
...nnees80_fete_livre_printemps.jpg
...es80/annees80_lait_concentre.jpg
...annees80/annees80_optic_2000.jpg
...nnees80/annees80_papa_haribo.jpg
...es80_regard_orient_printemps.jpg
...ndMonde/static/img/gallery/danse
...allery/danse/danse_abc_dijon.jpg
...danse/danse_ballet_du_nord-1.jpg
...danse/danse_ballet_du_nord-2.jpg
...danse/danse_ballet_du_nord-3.jpg
.../danse/danse_centre_national.jpg
...y/danse/danse_opera_bastille.jpg
...mg/gallery/danse/danse_rumba.jpg
...mg/gallery/danse/danse_tango.jpg
...onde/static/img/gallery/festival
...festival_art_danse_bourgogne.jpg
...festival/festival_danse_cafe.jpg
...ival/festival_de_cannes_2001.jpg
...stival/festival_de_la_manche.jpg
...stival/festival_film_creteil.jpg
...tival/festival_film_manosque.jpg
...tival/festival_film_poitiers.jpg
...tival/festival_film_st_denis.jpg
...ival/festival_film_villerupt.jpg
...estival/festival_jazz_amiens.jpg
...stival/festival_jazz_marciac.jpg
...festival/festival_jazz_nancy.jpg
...festival/festival_jazz_paris.jpg
...tival/festival_jazz_st_denis.jpg
...val/festival_music_angouleme.jpg
...ival/festival_music_gerberoy.jpg
...al/festival_music_strasbourg.jpg
...al/festival_theatre_grenoble.jpg
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 1958 bytes, 61 lines
View raw file
Powered by
Google Project Hosting