torgb.py

来自「minimal python variant for small footpri」· Python 代码 · 共 98 行

PY
98
字号
# Convert "arbitrary" image files to rgb files (SGI's image format).# Input may be compressed.# The uncompressed file type may be PBM, PGM, PPM, GIF, TIFF, or Sun raster.# An exception is raised if the file is not of a recognized type.# Returned filename is either the input filename or a temporary filename;# in the latter case the caller must ensure that it is removed.# Other temporary files used are removed by the function.import osimport tempfileimport pipesimport imghdrtable = {}t = pipes.Template()t.append('fromppm $IN $OUT', 'ff')table['ppm'] = tt = pipes.Template()t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')t.append('fromppm $IN $OUT', 'ff')table['pnm'] = ttable['pgm'] = ttable['pbm'] = tt = pipes.Template()t.append('fromgif $IN $OUT', 'ff')table['gif'] = tt = pipes.Template()t.append('tifftopnm', '--')t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')t.append('fromppm $IN $OUT', 'ff')table['tiff'] = tt = pipes.Template()t.append('rasttopnm', '--')t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')t.append('fromppm $IN $OUT', 'ff')table['rast'] = tt = pipes.Template()t.append('djpeg', '--')t.append('(PATH=$PATH:/ufs/guido/bin/sgi; exec pnmtoppm)', '--')t.append('fromppm $IN $OUT', 'ff')table['jpeg'] = tuncompress = pipes.Template()uncompress.append('uncompress', '--')error = 'torgb.error' # Exceptiondef torgb(filename):	temps = []	ret = None	try:		ret = _torgb(filename, temps)	finally:		for temp in temps[:]:			if temp <> ret:				try:					os.unlink(temp)				except os.error:					pass				temps.remove(temp)	return retdef _torgb(filename, temps):	if filename[-2:] == '.Z':		fname = tempfile.mktemp()		temps.append(fname)		sts = uncompress.copy(filename, fname)		if sts:			raise error, filename + ': uncompress failed'	else:		fname = filename	try:		ftype = imghdr.what(fname)	except IOError, msg:		if type(msg) == type(()) and len(msg) == 2 and \			type(msg[0]) == type(0) and type(msg[1]) == type(''):			msg = msg[1]		if type(msg) <> type(''):			msg = `msg`		raise error, filename + ': ' + msg	if ftype == 'rgb':		return fname	if ftype == None or not table.has_key(ftype):		raise error, \			filename + ': unsupported image file type ' + `ftype`	temp = tempfile.mktemp()	sts = table[ftype].copy(fname, temp)	if sts:		raise error, filename + ': conversion to rgb failed'	return temp

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?