awips2/pythonPackages/pil/PIL/PaletteFile.py
root 8e80217e59 Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: a02aeb236c [formerly 9f19e3f712] [formerly 06a8b51d6d [formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]
Former-commit-id: 06a8b51d6d
Former-commit-id: 3360eb6c5f
2012-01-06 08:55:05 -06:00

53 lines
1.1 KiB
Python

#
# Python Imaging Library
# $Id: PaletteFile.py 2134 2004-10-06 08:55:20Z fredrik $
#
# stuff to read simple, teragon-style palette files
#
# History:
# 97-08-23 fl Created
#
# Copyright (c) Secret Labs AB 1997.
# Copyright (c) Fredrik Lundh 1997.
#
# See the README file for information on usage and redistribution.
#
import string
##
# File handler for Teragon-style palette files.
class PaletteFile:
rawmode = "RGB"
def __init__(self, fp):
self.palette = map(lambda i: (i, i, i), range(256))
while 1:
s = fp.readline()
if not s:
break
if len(s) > 100:
raise SyntaxError, "bad palette file"
v = map(int, string.split(s))
try:
[i, r, g, b] = v
except ValueError:
[i, r] = v
g = b = r
if 0 <= i <= 255:
self.palette[i] = chr(r) + chr(g) + chr(b)
self.palette = string.join(self.palette, "")
def getpalette(self):
return self.palette, self.rawmode