blob: 6208289956ae17bdb8e39e41c2aa2394154546ea [file] [log] [blame]
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +00001# Convert "arbitrary" image files to rgb files (SGI's image format).
2# Input may be compressed.
3# The uncompressed file type may be PBM, PGM, PPM, GIF, TIFF, or Sun raster.
4# An exception is raised if the file is not of a recognized type.
5# Returned filename is either the input filename or a temporary filename;
6# in the latter case the caller must ensure that it is removed.
7# Other temporary files used are removed by the function.
8
9import os
10import tempfile
11import pipes
12import imghdr
13
14table = {}
15
16t = pipes.Template()
17t.append('fromppm $IN $OUT', 'ff')
18table['ppm'] = t
19
20t = pipes.Template()
21t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')
22t.append('fromppm $IN $OUT', 'ff')
23table['pnm'] = t
24table['pgm'] = t
25table['pbm'] = t
26
27t = pipes.Template()
28t.append('fromgif $IN $OUT', 'ff')
29table['gif'] = t
30
31t = pipes.Template()
32t.append('tifftopnm', '--')
33t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')
34t.append('fromppm $IN $OUT', 'ff')
35table['tiff'] = t
36
37t = pipes.Template()
38t.append('rasttopnm', '--')
39t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')
40t.append('fromppm $IN $OUT', 'ff')
41table['rast'] = t
42
43t = pipes.Template()
44t.append('djpeg', '--')
45t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')
46t.append('fromppm $IN $OUT', 'ff')
47table['jpeg'] = t
48
49uncompress = pipes.Template()
50uncompress.append('uncompress', '--')
51
52
Fred Drakedef00382000-08-18 14:59:33 +000053class error(Exception):
54 pass
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000055
56def torgb(filename):
57 temps = []
58 ret = None
59 try:
60 ret = _torgb(filename, temps)
61 finally:
62 for temp in temps[:]:
Fred Drake132dce22000-12-12 23:11:42 +000063 if temp != ret:
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000064 try:
65 os.unlink(temp)
66 except os.error:
67 pass
68 temps.remove(temp)
69 return ret
70
71def _torgb(filename, temps):
72 if filename[-2:] == '.Z':
Guido van Rossum3b0a3292002-08-09 16:38:32 +000073 (fd, fname) = tempfile.mkstemp()
74 os.close(fd)
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000075 temps.append(fname)
76 sts = uncompress.copy(filename, fname)
77 if sts:
78 raise error, filename + ': uncompress failed'
79 else:
80 fname = filename
81 try:
82 ftype = imghdr.what(fname)
83 except IOError, msg:
84 if type(msg) == type(()) and len(msg) == 2 and \
85 type(msg[0]) == type(0) and type(msg[1]) == type(''):
86 msg = msg[1]
Fred Drake132dce22000-12-12 23:11:42 +000087 if type(msg) is not type(''):
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000088 msg = `msg`
89 raise error, filename + ': ' + msg
90 if ftype == 'rgb':
91 return fname
Fred Drake132dce22000-12-12 23:11:42 +000092 if ftype is None or not table.has_key(ftype):
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000093 raise error, \
94 filename + ': unsupported image file type ' + `ftype`
Guido van Rossumdd8ddac2002-08-10 00:17:59 +000095 (fd, temp) = tempfile.mkstemp()
Guido van Rossum3b0a3292002-08-09 16:38:32 +000096 os.close(fd)
Guido van Rossum1ce7c6f1997-01-15 19:19:19 +000097 sts = table[ftype].copy(fname, temp)
98 if sts:
99 raise error, filename + ': conversion to rgb failed'
100 return temp