home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 April / enter-2004-04.iso / files / EVE_1424_100181.exe / SunImagePlugin.py < prev    next >
Encoding:
Text File  |  2004-04-20  |  2.1 KB  |  86 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: //modules/pil/PIL/SunImagePlugin.py#3 $
  4. #
  5. # Sun image file handling
  6. #
  7. # History:
  8. # 1995-09-10 fl   Created
  9. # 1996-05-28 fl   Fixed 32-bit alignment
  10. # 1998-12-29 fl   Import ImagePalette module
  11. # 2001-12-18 fl   Fixed palette loading (from Jean-Claude Rimbault)
  12. #
  13. # Copyright (c) 1997-2001 by Secret Labs AB
  14. # Copyright (c) 1995-1996 by Fredrik Lundh
  15. #
  16. # See the README file for information on usage and redistribution.
  17. #
  18.  
  19.  
  20. __version__ = "0.3"
  21.  
  22.  
  23. import string
  24. import Image, ImageFile, ImagePalette
  25.  
  26.  
  27. def i16(c):
  28.     return ord(c[1]) + (ord(c[0])<<8)
  29.  
  30. def i32(c):
  31.     return ord(c[3]) + (ord(c[2])<<8) + (ord(c[1])<<16) + (ord(c[0])<<24)
  32.  
  33.  
  34. def _accept(prefix):
  35.     return i32(prefix) == 0x59a66a95
  36.  
  37.  
  38. class SunImageFile(ImageFile.ImageFile):
  39.  
  40.     format = "SUN"
  41.     format_description = "Sun Raster File"
  42.  
  43.     def _open(self):
  44.  
  45.         # HEAD
  46.         s = self.fp.read(32)
  47.         if i32(s) != 0x59a66a95:
  48.             raise SyntaxError, "not an SUN raster file"
  49.  
  50.         offset = 32
  51.  
  52.         self.size = i32(s[4:8]), i32(s[8:12])
  53.  
  54.         depth = i32(s[12:16])
  55.         if depth == 1:
  56.             self.mode, rawmode = "1", "1;I"
  57.         elif depth == 8:
  58.             self.mode = rawmode = "L"
  59.         elif depth == 24:
  60.             self.mode, rawmode = "RGB", "BGR"
  61.         else:
  62.             raise SyntaxError, "unsupported mode"
  63.  
  64.         compression = i32(s[20:24])
  65.  
  66.         if i32(s[24:28]) != 0:
  67.             length = i32(s[28:32])
  68.             offset = offset + length
  69.             self.palette = ImagePalette.raw("RGB;L", self.fp.read(length))
  70.             if self.mode == "L":
  71.                 self.mode = rawmode = "P"
  72.  
  73.         stride = (((self.size[0] * depth + 7) / 8) + 3) & (~3)
  74.  
  75.         if compression == 1:
  76.             self.tile = [("raw", (0,0)+self.size, offset, (rawmode, stride))]
  77.         elif compression == 2:
  78.             self.tile = [("sun_rle", (0,0)+self.size, offset, rawmode)]
  79.  
  80. #
  81. # registry
  82.  
  83. Image.register_open("SUN", SunImageFile, _accept)
  84.  
  85. Image.register_extension("SUN", ".ras")
  86.