home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
pypil112.zip
/
PIL-1.1.2.zip
/
Lib
/
site-packages
/
PIL
/
PaletteFile.py
< prev
next >
Wrap
Text File
|
2001-05-03
|
1KB
|
51 lines
#
# Python Imaging Library
# $Id$
#
# 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
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(string.atoi, 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