Changeset 354
- Timestamp:
- 08/14/06 00:55:38 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pkpgcounter/trunk/pkpgpdls/tiff.py
r303 r354 21 21 # $Id$ 22 22 # 23 24 """This modules implements a page counter for TIFF documents.""" 23 25 24 26 import sys … … 58 60 integerbyteorder = "<I" 59 61 shortbyteorder = "<H" 60 el se :62 elif minfile[:4] == bigendian : 61 63 integerbyteorder = ">I" 62 64 shortbyteorder = ">H" 65 else : 66 raise pdlparser.PDLParserError, "Unknown file endianness." 63 67 pos = 4 64 68 try :