openmedialibrary_platform_d.../lib/python3.7/site-packages/PIL/XVThumbImagePlugin.py

81 lines
1.9 KiB
Python
Raw Normal View History

2016-02-06 09:36:57 +00:00
#
# The Python Imaging Library.
# $Id$
#
# XV Thumbnail file handler by Charles E. "Gene" Cash
# (gcash@magicnet.net)
#
# see xvcolor.c and xvbrowse.c in the sources to John Bradley's XV,
# available from ftp://ftp.cis.upenn.edu/pub/xv/
#
# history:
# 98-08-15 cec created (b/w only)
# 98-12-09 cec added color palette
# 98-12-28 fl added to PIL (with only a few very minor modifications)
#
# To do:
# FIXME: make save work (this requires quantization support)
#
2018-12-31 23:25:26 +00:00
from . import Image, ImageFile, ImagePalette
from ._binary import i8, o8
2016-02-06 09:36:57 +00:00
__version__ = "0.1"
2018-12-31 23:25:26 +00:00
_MAGIC = b"P7 332"
2016-02-06 09:36:57 +00:00
# standard color palette for thumbnails (RGB332)
PALETTE = b""
for r in range(8):
for g in range(8):
for b in range(4):
PALETTE = PALETTE + (o8((r*255)//7)+o8((g*255)//7)+o8((b*255)//3))
2018-12-31 23:25:26 +00:00
def _accept(prefix):
return prefix[:6] == _MAGIC
2016-02-06 09:36:57 +00:00
##
# Image plugin for XV thumbnail images.
class XVThumbImageFile(ImageFile.ImageFile):
format = "XVThumb"
format_description = "XV thumbnail image"
def _open(self):
# check magic
2018-12-31 23:25:26 +00:00
if not _accept(self.fp.read(6)):
2016-02-06 09:36:57 +00:00
raise SyntaxError("not an XV thumbnail file")
# Skip to beginning of next line
self.fp.readline()
# skip info comments
while True:
s = self.fp.readline()
if not s:
raise SyntaxError("Unexpected EOF reading XV thumbnail file")
2018-12-31 23:25:26 +00:00
if i8(s[0]) != 35: # ie. when not a comment: '#'
2016-02-06 09:36:57 +00:00
break
# parse header line (already read)
s = s.strip().split()
self.mode = "P"
2018-12-31 23:25:26 +00:00
self._size = int(s[0]), int(s[1])
2016-02-06 09:36:57 +00:00
self.palette = ImagePalette.raw("RGB", PALETTE)
self.tile = [
("raw", (0, 0)+self.size,
self.fp.tell(), (self.mode, 0, 1)
)]
2018-12-31 23:25:26 +00:00
2016-02-06 09:36:57 +00:00
# --------------------------------------------------------------------
2018-12-31 23:25:26 +00:00
Image.register_open(XVThumbImageFile.format, XVThumbImageFile, _accept)