2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# Sun image file handling
|
|
|
|
#
|
|
|
|
# History:
|
|
|
|
# 1995-09-10 fl Created
|
|
|
|
# 1996-05-28 fl Fixed 32-bit alignment
|
|
|
|
# 1998-12-29 fl Import ImagePalette module
|
|
|
|
# 2001-12-18 fl Fixed palette loading (from Jean-Claude Rimbault)
|
|
|
|
#
|
|
|
|
# Copyright (c) 1997-2001 by Secret Labs AB
|
|
|
|
# Copyright (c) 1995-1996 by Fredrik Lundh
|
|
|
|
#
|
|
|
|
# See the README file for information on usage and redistribution.
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2013-03-07 20:20:28 +04:00
|
|
|
from PIL import Image, ImageFile, ImagePalette, _binary
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-08-25 15:27:18 +03:00
|
|
|
__version__ = "0.3"
|
|
|
|
|
py3k: The big push
There are two main issues fixed with this commit:
* bytes vs. str: All file, image, and palette data are now handled as
bytes. A new _binary module consolidates the hacks needed to do this
across Python versions. tostring/fromstring methods have been renamed to
tobytes/frombytes, but the Python 2.6/2.7 versions alias them to the old
names for compatibility. Users should move to tobytes/frombytes.
One other potentially-breaking change is that text data in image files
(such as tags, comments) are now explicitly handled with a specific
character encoding in mind. This works well with the Unicode str in
Python 3, but may trip up old code expecting a straight byte-for-byte
translation to a Python string. This also required a change to Gohlke's
tags tests (in Tests/test_file_png.py) to expect Unicode strings from
the code.
* True div vs. floor div: Many division operations used the "/" operator
to do floor division, which is now the "//" operator in Python 3. These
were fixed.
As of this commit, on the first pass, I have one failing test (improper
handling of a slice object in a C module, test_imagepath.py) in Python 3,
and three that that I haven't tried running yet (test_imagegl,
test_imagegrab, and test_imageqt). I also haven't tested anything on
Windows. All but the three skipped tests run flawlessly against Pythons
2.6 and 2.7.
2012-10-21 01:01:53 +04:00
|
|
|
i32 = _binary.i32be
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
def _accept(prefix):
|
2015-06-18 03:12:12 +03:00
|
|
|
return len(prefix) >= 4 and i32(prefix) == 0x59a66a95
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-07-16 15:26:30 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
##
|
|
|
|
# Image plugin for Sun raster files.
|
|
|
|
|
|
|
|
class SunImageFile(ImageFile.ImageFile):
|
|
|
|
|
|
|
|
format = "SUN"
|
|
|
|
format_description = "Sun Raster File"
|
|
|
|
|
|
|
|
def _open(self):
|
|
|
|
|
2016-11-22 13:50:39 +03:00
|
|
|
# The Sun Raster file header is 32 bytes in length and has the following format:
|
|
|
|
|
|
|
|
# typedef struct _SunRaster
|
|
|
|
# {
|
|
|
|
# DWORD MagicNumber; /* Magic (identification) number */
|
|
|
|
# DWORD Width; /* Width of image in pixels */
|
|
|
|
# DWORD Height; /* Height of image in pixels */
|
|
|
|
# DWORD Depth; /* Number of bits per pixel */
|
|
|
|
# DWORD Length; /* Size of image data in bytes */
|
|
|
|
# DWORD Type; /* Type of raster file */
|
|
|
|
# DWORD ColorMapType; /* Type of color map */
|
|
|
|
# DWORD ColorMapLength; /* Size of the color map in bytes */
|
|
|
|
# } SUNRASTER;
|
|
|
|
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
# HEAD
|
|
|
|
s = self.fp.read(32)
|
|
|
|
if i32(s) != 0x59a66a95:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not an SUN raster file")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
offset = 32
|
|
|
|
|
|
|
|
self.size = i32(s[4:8]), i32(s[8:12])
|
|
|
|
|
|
|
|
depth = i32(s[12:16])
|
2016-11-22 13:50:39 +03:00
|
|
|
data_length = i32(s[16:20]) # unreliable, ignore.
|
2016-11-20 06:43:43 +03:00
|
|
|
file_type = i32(s[20:24])
|
2016-11-22 13:50:39 +03:00
|
|
|
palette_type = i32(s[24:28]) # 0: None, 1: RGB, 2: Raw/arbitrary
|
|
|
|
palette_length = i32(s[28:32])
|
2016-11-20 06:43:43 +03:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
if depth == 1:
|
|
|
|
self.mode, rawmode = "1", "1;I"
|
2016-11-22 13:50:39 +03:00
|
|
|
elif depth == 4:
|
|
|
|
self.mode, rawmode = "L", "L;4"
|
2010-07-31 06:52:47 +04:00
|
|
|
elif depth == 8:
|
|
|
|
self.mode = rawmode = "L"
|
|
|
|
elif depth == 24:
|
2016-11-20 06:43:43 +03:00
|
|
|
if file_type == 3:
|
|
|
|
self.mode, rawmode = "RGB", "RGB"
|
|
|
|
else:
|
|
|
|
self.mode, rawmode = "RGB", "BGR"
|
2016-11-22 13:50:39 +03:00
|
|
|
elif depth == 32:
|
|
|
|
if file_type == 3:
|
|
|
|
self.mode, rawmode = 'RGB', 'RGBX'
|
|
|
|
else:
|
|
|
|
self.mode, rawmode = 'RGB', 'BGRX'
|
2010-07-31 06:52:47 +04:00
|
|
|
else:
|
2016-11-23 16:33:02 +03:00
|
|
|
raise SyntaxError("Unsupported Mode/Bit Depth")
|
2016-11-22 13:50:39 +03:00
|
|
|
|
|
|
|
if palette_length:
|
|
|
|
if palette_length > 1024:
|
|
|
|
raise SyntaxError("Unsupported Color Palette Length")
|
|
|
|
|
|
|
|
if palette_type != 1:
|
|
|
|
raise SyntaxError("Unsupported Palette Type")
|
|
|
|
|
|
|
|
offset = offset + palette_length
|
|
|
|
self.palette = ImagePalette.raw("RGB;L", self.fp.read(palette_length))
|
2010-07-31 06:52:47 +04:00
|
|
|
if self.mode == "L":
|
2016-11-22 13:50:39 +03:00
|
|
|
self.mode = "P"
|
|
|
|
rawmode = rawmode.replace('L', 'P')
|
|
|
|
|
|
|
|
# 16 bit boundaries on stride
|
|
|
|
stride = ((self.size[0] * depth + 15) // 16) * 2
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2016-11-20 06:43:43 +03:00
|
|
|
# file type: Type is the version (or flavor) of the bitmap
|
|
|
|
# file. The following values are typically found in the Type
|
|
|
|
# field:
|
|
|
|
# 0000h Old
|
|
|
|
# 0001h Standard
|
|
|
|
# 0002h Byte-encoded
|
|
|
|
# 0003h RGB format
|
|
|
|
# 0004h TIFF format
|
|
|
|
# 0005h IFF format
|
|
|
|
# FFFFh Experimental
|
|
|
|
|
|
|
|
# Old and standard are the same, except for the length tag.
|
|
|
|
# byte-encoded is run-length-encoded
|
|
|
|
# RGB looks similar to standard, but RGB byte order
|
|
|
|
# TIFF and IFF mean that they were converted from T/IFF
|
|
|
|
# Experimental means that it's something else.
|
|
|
|
# (http://www.fileformat.info/format/sunraster/egff.htm)
|
|
|
|
|
|
|
|
if file_type in (0, 1, 3, 4, 5):
|
2014-07-16 15:26:30 +04:00
|
|
|
self.tile = [("raw", (0, 0)+self.size, offset, (rawmode, stride))]
|
2016-11-20 06:43:43 +03:00
|
|
|
elif file_type == 2:
|
2014-07-16 15:26:30 +04:00
|
|
|
self.tile = [("sun_rle", (0, 0)+self.size, offset, rawmode)]
|
2016-11-20 06:43:43 +03:00
|
|
|
else:
|
|
|
|
raise SyntaxError('Unsupported Sun Raster file type')
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# registry
|
|
|
|
|
2015-07-04 16:29:58 +03:00
|
|
|
Image.register_open(SunImageFile.format, SunImageFile, _accept)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-07-04 16:29:58 +03:00
|
|
|
Image.register_extension(SunImageFile.format, ".ras")
|