2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# Image plugin for Palm pixmap images (output only).
|
|
|
|
##
|
|
|
|
|
2017-01-17 16:22:18 +03:00
|
|
|
from . import Image, ImageFile
|
|
|
|
from ._binary import o8, o16be as o16b
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-08-25 15:27:18 +03:00
|
|
|
__version__ = "1.0"
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
_Palm8BitColormapValues = (
|
2014-07-01 11:44:36 +04:00
|
|
|
(255, 255, 255), (255, 204, 255), (255, 153, 255), (255, 102, 255),
|
|
|
|
(255, 51, 255), (255, 0, 255), (255, 255, 204), (255, 204, 204),
|
|
|
|
(255, 153, 204), (255, 102, 204), (255, 51, 204), (255, 0, 204),
|
|
|
|
(255, 255, 153), (255, 204, 153), (255, 153, 153), (255, 102, 153),
|
|
|
|
(255, 51, 153), (255, 0, 153), (204, 255, 255), (204, 204, 255),
|
|
|
|
(204, 153, 255), (204, 102, 255), (204, 51, 255), (204, 0, 255),
|
|
|
|
(204, 255, 204), (204, 204, 204), (204, 153, 204), (204, 102, 204),
|
|
|
|
(204, 51, 204), (204, 0, 204), (204, 255, 153), (204, 204, 153),
|
|
|
|
(204, 153, 153), (204, 102, 153), (204, 51, 153), (204, 0, 153),
|
|
|
|
(153, 255, 255), (153, 204, 255), (153, 153, 255), (153, 102, 255),
|
|
|
|
(153, 51, 255), (153, 0, 255), (153, 255, 204), (153, 204, 204),
|
|
|
|
(153, 153, 204), (153, 102, 204), (153, 51, 204), (153, 0, 204),
|
|
|
|
(153, 255, 153), (153, 204, 153), (153, 153, 153), (153, 102, 153),
|
|
|
|
(153, 51, 153), (153, 0, 153), (102, 255, 255), (102, 204, 255),
|
|
|
|
(102, 153, 255), (102, 102, 255), (102, 51, 255), (102, 0, 255),
|
|
|
|
(102, 255, 204), (102, 204, 204), (102, 153, 204), (102, 102, 204),
|
|
|
|
(102, 51, 204), (102, 0, 204), (102, 255, 153), (102, 204, 153),
|
|
|
|
(102, 153, 153), (102, 102, 153), (102, 51, 153), (102, 0, 153),
|
2015-08-25 15:27:18 +03:00
|
|
|
(51, 255, 255), (51, 204, 255), (51, 153, 255), (51, 102, 255),
|
|
|
|
(51, 51, 255), (51, 0, 255), (51, 255, 204), (51, 204, 204),
|
|
|
|
(51, 153, 204), (51, 102, 204), (51, 51, 204), (51, 0, 204),
|
|
|
|
(51, 255, 153), (51, 204, 153), (51, 153, 153), (51, 102, 153),
|
|
|
|
(51, 51, 153), (51, 0, 153), (0, 255, 255), (0, 204, 255),
|
|
|
|
(0, 153, 255), (0, 102, 255), (0, 51, 255), (0, 0, 255),
|
|
|
|
(0, 255, 204), (0, 204, 204), (0, 153, 204), (0, 102, 204),
|
|
|
|
(0, 51, 204), (0, 0, 204), (0, 255, 153), (0, 204, 153),
|
|
|
|
(0, 153, 153), (0, 102, 153), (0, 51, 153), (0, 0, 153),
|
2014-07-01 11:44:36 +04:00
|
|
|
(255, 255, 102), (255, 204, 102), (255, 153, 102), (255, 102, 102),
|
|
|
|
(255, 51, 102), (255, 0, 102), (255, 255, 51), (255, 204, 51),
|
|
|
|
(255, 153, 51), (255, 102, 51), (255, 51, 51), (255, 0, 51),
|
|
|
|
(255, 255, 0), (255, 204, 0), (255, 153, 0), (255, 102, 0),
|
|
|
|
(255, 51, 0), (255, 0, 0), (204, 255, 102), (204, 204, 102),
|
|
|
|
(204, 153, 102), (204, 102, 102), (204, 51, 102), (204, 0, 102),
|
|
|
|
(204, 255, 51), (204, 204, 51), (204, 153, 51), (204, 102, 51),
|
|
|
|
(204, 51, 51), (204, 0, 51), (204, 255, 0), (204, 204, 0),
|
|
|
|
(204, 153, 0), (204, 102, 0), (204, 51, 0), (204, 0, 0),
|
|
|
|
(153, 255, 102), (153, 204, 102), (153, 153, 102), (153, 102, 102),
|
|
|
|
(153, 51, 102), (153, 0, 102), (153, 255, 51), (153, 204, 51),
|
|
|
|
(153, 153, 51), (153, 102, 51), (153, 51, 51), (153, 0, 51),
|
|
|
|
(153, 255, 0), (153, 204, 0), (153, 153, 0), (153, 102, 0),
|
|
|
|
(153, 51, 0), (153, 0, 0), (102, 255, 102), (102, 204, 102),
|
|
|
|
(102, 153, 102), (102, 102, 102), (102, 51, 102), (102, 0, 102),
|
|
|
|
(102, 255, 51), (102, 204, 51), (102, 153, 51), (102, 102, 51),
|
|
|
|
(102, 51, 51), (102, 0, 51), (102, 255, 0), (102, 204, 0),
|
|
|
|
(102, 153, 0), (102, 102, 0), (102, 51, 0), (102, 0, 0),
|
2015-08-25 15:27:18 +03:00
|
|
|
(51, 255, 102), (51, 204, 102), (51, 153, 102), (51, 102, 102),
|
|
|
|
(51, 51, 102), (51, 0, 102), (51, 255, 51), (51, 204, 51),
|
|
|
|
(51, 153, 51), (51, 102, 51), (51, 51, 51), (51, 0, 51),
|
|
|
|
(51, 255, 0), (51, 204, 0), (51, 153, 0), (51, 102, 0),
|
|
|
|
(51, 51, 0), (51, 0, 0), (0, 255, 102), (0, 204, 102),
|
|
|
|
(0, 153, 102), (0, 102, 102), (0, 51, 102), (0, 0, 102),
|
|
|
|
(0, 255, 51), (0, 204, 51), (0, 153, 51), (0, 102, 51),
|
|
|
|
(0, 51, 51), (0, 0, 51), (0, 255, 0), (0, 204, 0),
|
|
|
|
(0, 153, 0), (0, 102, 0), (0, 51, 0), (17, 17, 17),
|
|
|
|
(34, 34, 34), (68, 68, 68), (85, 85, 85), (119, 119, 119),
|
2014-07-01 11:44:36 +04:00
|
|
|
(136, 136, 136), (170, 170, 170), (187, 187, 187), (221, 221, 221),
|
|
|
|
(238, 238, 238), (192, 192, 192), (128, 0, 0), (128, 0, 128),
|
2015-08-25 15:27:18 +03:00
|
|
|
(0, 128, 0), (0, 128, 128), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0),
|
|
|
|
(0, 0, 0), (0, 0, 0), (0, 0, 0), (0, 0, 0))
|
2014-07-01 11:44:36 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
# so build a prototype image to be used for palette resampling
|
|
|
|
def build_prototype_image():
|
2016-11-06 04:38:59 +03:00
|
|
|
image = Image.new("L", (1, len(_Palm8BitColormapValues)))
|
2012-10-16 01:18:27 +04:00
|
|
|
image.putdata(list(range(len(_Palm8BitColormapValues))))
|
2010-07-31 06:52:47 +04:00
|
|
|
palettedata = ()
|
2016-11-06 04:38:59 +03:00
|
|
|
for colormapValue in _Palm8BitColormapValues:
|
|
|
|
palettedata += colormapValue
|
|
|
|
palettedata += (0, 0, 0)*(256 - len(_Palm8BitColormapValues))
|
2010-07-31 06:52:47 +04:00
|
|
|
image.putpalette(palettedata)
|
|
|
|
return image
|
|
|
|
|
|
|
|
Palm8BitColormapImage = build_prototype_image()
|
|
|
|
|
2014-07-01 11:44:36 +04:00
|
|
|
# OK, we now have in Palm8BitColormapImage,
|
|
|
|
# a "P"-mode image with the right palette
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
_FLAGS = {
|
|
|
|
"custom-colormap": 0x4000,
|
|
|
|
"is-compressed": 0x8000,
|
|
|
|
"has-transparent": 0x2000,
|
|
|
|
}
|
|
|
|
|
|
|
|
_COMPRESSION_TYPES = {
|
|
|
|
"none": 0xFF,
|
|
|
|
"rle": 0x01,
|
|
|
|
"scanline": 0x00,
|
|
|
|
}
|
|
|
|
|
2014-07-01 11:44:36 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
##
|
|
|
|
# (Internal) Image save plugin for the Palm format.
|
|
|
|
|
|
|
|
def _save(im, fp, filename, check=0):
|
|
|
|
|
|
|
|
if im.mode == "P":
|
|
|
|
|
|
|
|
# we assume this is a color Palm image with the standard colormap,
|
|
|
|
# unless the "info" dict has a "custom-colormap" field
|
|
|
|
|
|
|
|
rawmode = "P"
|
|
|
|
bpp = 8
|
|
|
|
version = 1
|
|
|
|
|
2014-07-01 11:44:36 +04:00
|
|
|
elif (im.mode == "L" and
|
|
|
|
"bpp" in im.encoderinfo and
|
|
|
|
im.encoderinfo["bpp"] in (1, 2, 4)):
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-07-01 11:44:36 +04:00
|
|
|
# this is 8-bit grayscale, so we shift it to get the high-order bits,
|
|
|
|
# and invert it because
|
2010-07-31 06:52:47 +04:00
|
|
|
# Palm does greyscale from white (0) to black (1)
|
|
|
|
bpp = im.encoderinfo["bpp"]
|
2014-07-01 11:44:36 +04:00
|
|
|
im = im.point(
|
|
|
|
lambda x, shift=8-bpp, maxval=(1 << bpp)-1: maxval - (x >> shift))
|
2010-07-31 06:52:47 +04:00
|
|
|
# we ignore the palette here
|
|
|
|
im.mode = "P"
|
|
|
|
rawmode = "P;" + str(bpp)
|
|
|
|
version = 1
|
|
|
|
|
2012-10-16 01:18:27 +04:00
|
|
|
elif im.mode == "L" and "bpp" in im.info and im.info["bpp"] in (1, 2, 4):
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-07-01 11:44:36 +04:00
|
|
|
# here we assume that even though the inherent mode is 8-bit grayscale,
|
|
|
|
# only the lower bpp bits are significant.
|
|
|
|
# We invert them to match the Palm.
|
2010-07-31 06:52:47 +04:00
|
|
|
bpp = im.info["bpp"]
|
|
|
|
im = im.point(lambda x, maxval=(1 << bpp)-1: maxval - (x & maxval))
|
|
|
|
# we ignore the palette here
|
|
|
|
im.mode = "P"
|
|
|
|
rawmode = "P;" + str(bpp)
|
|
|
|
version = 1
|
|
|
|
|
|
|
|
elif im.mode == "1":
|
|
|
|
|
|
|
|
# monochrome -- write it inverted, as is the Palm standard
|
|
|
|
rawmode = "1;I"
|
|
|
|
bpp = 1
|
|
|
|
version = 0
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
2012-10-11 07:52:53 +04:00
|
|
|
raise IOError("cannot write mode %s as Palm" % im.mode)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
if check:
|
|
|
|
return check
|
|
|
|
|
|
|
|
#
|
|
|
|
# make sure image data is available
|
|
|
|
im.load()
|
|
|
|
|
|
|
|
# write header
|
|
|
|
|
|
|
|
cols = im.size[0]
|
|
|
|
rows = im.size[1]
|
|
|
|
|
2014-07-01 23:36:56 +04:00
|
|
|
rowbytes = int((cols + (16//bpp - 1)) / (16 // bpp)) * 2
|
2010-07-31 06:52:47 +04:00
|
|
|
transparent_index = 0
|
|
|
|
compression_type = _COMPRESSION_TYPES["none"]
|
|
|
|
|
2014-05-10 08:36:15 +04:00
|
|
|
flags = 0
|
2012-10-16 01:18:27 +04:00
|
|
|
if im.mode == "P" and "custom-colormap" in im.info:
|
2010-07-31 06:52:47 +04:00
|
|
|
flags = flags & _FLAGS["custom-colormap"]
|
2014-05-10 08:36:15 +04:00
|
|
|
colormapsize = 4 * 256 + 2
|
2010-07-31 06:52:47 +04:00
|
|
|
colormapmode = im.palette.mode
|
|
|
|
colormap = im.getdata().getpalette()
|
|
|
|
else:
|
|
|
|
colormapsize = 0
|
|
|
|
|
2012-10-16 01:18:27 +04:00
|
|
|
if "offset" in im.info:
|
2014-05-10 08:36:15 +04:00
|
|
|
offset = (rowbytes * rows + 16 + 3 + colormapsize) // 4
|
2010-07-31 06:52:47 +04:00
|
|
|
else:
|
|
|
|
offset = 0
|
|
|
|
|
|
|
|
fp.write(o16b(cols) + o16b(rows) + o16b(rowbytes) + o16b(flags))
|
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
|
|
|
fp.write(o8(bpp))
|
|
|
|
fp.write(o8(version))
|
2010-07-31 06:52:47 +04:00
|
|
|
fp.write(o16b(offset))
|
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
|
|
|
fp.write(o8(transparent_index))
|
|
|
|
fp.write(o8(compression_type))
|
2010-07-31 06:52:47 +04:00
|
|
|
fp.write(o16b(0)) # reserved by Palm
|
|
|
|
|
|
|
|
# now write colormap if necessary
|
|
|
|
|
|
|
|
if colormapsize > 0:
|
|
|
|
fp.write(o16b(256))
|
|
|
|
for i in range(256):
|
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
|
|
|
fp.write(o8(i))
|
2010-07-31 06:52:47 +04:00
|
|
|
if colormapmode == 'RGB':
|
2014-07-01 11:44:36 +04:00
|
|
|
fp.write(
|
|
|
|
o8(colormap[3 * i]) +
|
|
|
|
o8(colormap[3 * i + 1]) +
|
|
|
|
o8(colormap[3 * i + 2]))
|
2010-07-31 06:52:47 +04:00
|
|
|
elif colormapmode == 'RGBA':
|
2014-07-01 11:44:36 +04:00
|
|
|
fp.write(
|
|
|
|
o8(colormap[4 * i]) +
|
|
|
|
o8(colormap[4 * i + 1]) +
|
|
|
|
o8(colormap[4 * i + 2]))
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
# now convert data to raw form
|
2014-07-01 11:44:36 +04:00
|
|
|
ImageFile._save(
|
|
|
|
im, fp, [("raw", (0, 0)+im.size, 0, (rawmode, rowbytes, 1))])
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-09-02 16:48:22 +03:00
|
|
|
if hasattr(fp, "flush"):
|
|
|
|
fp.flush()
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
Image.register_save("Palm", _save)
|
|
|
|
|
|
|
|
Image.register_extension("Palm", ".palm")
|
|
|
|
|
|
|
|
Image.register_mime("Palm", "image/palm")
|