Pillow/src/PIL/PpmImagePlugin.py

187 lines
5.2 KiB
Python
Raw Normal View History

2010-07-31 06:52:47 +04:00
#
# The Python Imaging Library.
# $Id$
#
# PPM support for PIL
#
# History:
# 96-03-24 fl Created
# 98-03-06 fl Write RGBA images (as RGB, that is)
#
# Copyright (c) Secret Labs AB 1997-98.
# Copyright (c) Fredrik Lundh 1996.
#
# See the README file for information on usage and redistribution.
#
from . import Image, ImageFile
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
b_whitespace = b"\x20\x09\x0a\x0b\x0c\x0d"
2010-07-31 06:52:47 +04:00
MODES = {
# standard
b"P4": "1",
b"P5": "L",
b"P6": "RGB",
2010-07-31 06:52:47 +04:00
# extensions
b"P0CMYK": "CMYK",
2010-07-31 06:52:47 +04:00
# PIL extensions (for test purposes only)
b"PyP": "P",
b"PyRGBA": "RGBA",
2019-03-21 16:28:20 +03:00
b"PyCMYK": "CMYK",
2010-07-31 06:52:47 +04:00
}
2014-08-26 17:47:10 +04:00
2010-07-31 06:52:47 +04:00
def _accept(prefix):
return prefix[0:1] == b"P" and prefix[1] in b"0456y"
2010-07-31 06:52:47 +04:00
2014-08-26 17:47:10 +04:00
2010-07-31 06:52:47 +04:00
##
# Image plugin for PBM, PGM, and PPM images.
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
class PpmImageFile(ImageFile.ImageFile):
format = "PPM"
format_description = "Pbmplus image"
def _read_magic(self, magic=b""):
2021-01-04 07:49:19 +03:00
while True: # read until next whitespace
c = self.fp.read(1)
if c in b_whitespace:
2021-01-04 07:49:19 +03:00
break
magic += c
if len(magic) > 6: # exceeded max magic number length
2021-01-04 07:49:19 +03:00
break
return magic
2021-01-04 07:49:19 +03:00
2020-12-21 06:56:30 +03:00
def _read_token(self, token=b""):
def _ignore_comment(): # ignores rest of the line; stops at CR, LF or EOF
2021-01-14 00:45:29 +03:00
while self.fp.read(1) not in b"\r\n":
pass
2020-12-21 06:56:30 +03:00
while True: # read until non-whitespace is found
c = self.fp.read(1)
if c == b"#": # found comment, ignore it
_ignore_comment()
continue
if c in b_whitespace: # found whitespace, ignore it
2020-12-21 06:56:30 +03:00
if c == b"": # reached EOF
2021-01-06 07:15:07 +03:00
raise ValueError("Reached EOF while reading header")
2020-12-21 06:56:30 +03:00
continue
break
token += c
2014-08-26 17:47:10 +04:00
while True: # read until next whitespace
2010-07-31 06:52:47 +04:00
c = self.fp.read(1)
2020-12-21 06:56:30 +03:00
if c == b"#":
_ignore_comment()
continue
if c in b_whitespace: # token ended
2010-07-31 06:52:47 +04:00
break
2020-12-21 06:56:30 +03:00
token += c
if len(token) > 10:
raise ValueError(f"Token too long in file header: {token}")
2020-12-21 06:56:30 +03:00
return token
2010-07-31 06:52:47 +04:00
def _open(self):
2021-01-04 07:49:19 +03:00
magic_number = self._read_magic()
try:
mode = MODES[magic_number]
except KeyError:
raise SyntaxError("not a PPM file")
2019-03-04 10:17:12 +03:00
self.custom_mimetype = {
b"P4": "image/x-portable-bitmap",
b"P5": "image/x-portable-graymap",
b"P6": "image/x-portable-pixmap",
2019-03-04 10:17:12 +03:00
}.get(magic_number)
2010-07-31 06:52:47 +04:00
if mode == "1":
self.mode = "1"
rawmode = "1;I"
else:
self.mode = rawmode = mode
for ix in range(3):
2021-01-06 07:07:14 +03:00
token = self._read_token()
2020-12-21 06:56:30 +03:00
try: # check token sanity
2021-01-06 07:07:14 +03:00
token = int(token)
2020-12-21 06:56:30 +03:00
except ValueError:
2021-01-06 20:46:30 +03:00
raise ValueError(
f"Non-decimal-ASCII found in header: {token}"
) from None
2020-12-21 06:56:30 +03:00
if ix == 0: # token is the x size
xsize = token
elif ix == 1: # token is the y size
ysize = token
2010-07-31 06:52:47 +04:00
if mode == "1":
break
2020-12-21 06:56:30 +03:00
elif ix == 2: # token is maxval
2021-01-31 06:51:39 +03:00
maxval = token
if maxval > 255:
2019-03-21 16:28:20 +03:00
if not mode == "L":
2021-01-06 07:15:07 +03:00
raise ValueError(f"Too many colors for band: {token}")
2020-12-21 06:56:30 +03:00
if token < 2 ** 16:
2019-03-21 16:28:20 +03:00
self.mode = "I"
rawmode = "I;16B"
2014-04-08 09:12:33 +04:00
else:
2019-03-21 16:28:20 +03:00
self.mode = "I"
rawmode = "I;32B"
2014-08-26 17:47:10 +04:00
self._size = xsize, ysize
2019-03-21 16:28:20 +03:00
self.tile = [("raw", (0, 0, xsize, ysize), self.fp.tell(), (rawmode, 0, 1))]
2010-07-31 06:52:47 +04:00
2014-08-26 17:47:10 +04:00
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
def _save(im, fp, filename):
if im.mode == "1":
rawmode, head = "1;I", b"P4"
2010-07-31 06:52:47 +04:00
elif im.mode == "L":
rawmode, head = "L", b"P5"
2014-04-08 09:23:04 +04:00
elif im.mode == "I":
2019-03-21 16:28:20 +03:00
if im.getextrema()[1] < 2 ** 16:
2014-04-08 09:23:04 +04:00
rawmode, head = "I;16B", b"P5"
else:
rawmode, head = "I;32B", b"P5"
2010-07-31 06:52:47 +04:00
elif im.mode == "RGB":
rawmode, head = "RGB", b"P6"
2010-07-31 06:52:47 +04:00
elif im.mode == "RGBA":
rawmode, head = "RGB", b"P6"
2010-07-31 06:52:47 +04:00
else:
raise OSError(f"cannot write mode {im.mode} as PPM")
2019-03-21 16:28:20 +03:00
fp.write(head + ("\n%d %d\n" % im.size).encode("ascii"))
2014-04-08 09:23:04 +04:00
if head == b"P6":
fp.write(b"255\n")
2014-04-08 09:23:04 +04:00
if head == b"P5":
if rawmode == "L":
2014-04-08 09:23:04 +04:00
fp.write(b"255\n")
elif rawmode == "I;16B":
fp.write(b"65535\n")
elif rawmode == "I;32B":
fp.write(b"2147483648\n")
2019-03-21 16:28:20 +03:00
ImageFile._save(im, fp, [("raw", (0, 0) + im.size, 0, (rawmode, 0, 1))])
2010-07-31 06:52:47 +04:00
# ALTERNATIVE: save via builtin debug function
# im._dump(filename)
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
2018-03-03 12:54:00 +03:00
Image.register_open(PpmImageFile.format, PpmImageFile, _accept)
Image.register_save(PpmImageFile.format, _save)
2010-07-31 06:52:47 +04:00
Image.register_extensions(PpmImageFile.format, [".pbm", ".pgm", ".ppm", ".pnm"])
2019-03-04 10:17:12 +03:00
2019-03-06 00:06:19 +03:00
Image.register_mime(PpmImageFile.format, "image/x-portable-anymap")