XVThumbImagePlugin.py 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. #
  2. # The Python Imaging Library.
  3. # $Id$
  4. #
  5. # XV Thumbnail file handler by Charles E. "Gene" Cash
  6. # (gcash@magicnet.net)
  7. #
  8. # see xvcolor.c and xvbrowse.c in the sources to John Bradley's XV,
  9. # available from ftp://ftp.cis.upenn.edu/pub/xv/
  10. #
  11. # history:
  12. # 98-08-15 cec created (b/w only)
  13. # 98-12-09 cec added color palette
  14. # 98-12-28 fl added to PIL (with only a few very minor modifications)
  15. #
  16. # To do:
  17. # FIXME: make save work (this requires quantization support)
  18. #
  19. from __future__ import annotations
  20. from . import Image, ImageFile, ImagePalette
  21. from ._binary import o8
  22. _MAGIC = b"P7 332"
  23. # standard color palette for thumbnails (RGB332)
  24. PALETTE = b""
  25. for r in range(8):
  26. for g in range(8):
  27. for b in range(4):
  28. PALETTE = PALETTE + (
  29. o8((r * 255) // 7) + o8((g * 255) // 7) + o8((b * 255) // 3)
  30. )
  31. def _accept(prefix):
  32. return prefix[:6] == _MAGIC
  33. ##
  34. # Image plugin for XV thumbnail images.
  35. class XVThumbImageFile(ImageFile.ImageFile):
  36. format = "XVThumb"
  37. format_description = "XV thumbnail image"
  38. def _open(self):
  39. # check magic
  40. if not _accept(self.fp.read(6)):
  41. msg = "not an XV thumbnail file"
  42. raise SyntaxError(msg)
  43. # Skip to beginning of next line
  44. self.fp.readline()
  45. # skip info comments
  46. while True:
  47. s = self.fp.readline()
  48. if not s:
  49. msg = "Unexpected EOF reading XV thumbnail file"
  50. raise SyntaxError(msg)
  51. if s[0] != 35: # ie. when not a comment: '#'
  52. break
  53. # parse header line (already read)
  54. s = s.strip().split()
  55. self._mode = "P"
  56. self._size = int(s[0]), int(s[1])
  57. self.palette = ImagePalette.raw("RGB", PALETTE)
  58. self.tile = [("raw", (0, 0) + self.size, self.fp.tell(), (self.mode, 0, 1))]
  59. # --------------------------------------------------------------------
  60. Image.register_open(XVThumbImageFile.format, XVThumbImageFile, _accept)