DcxImagePlugin.py 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #
  2. # The Python Imaging Library.
  3. # $Id$
  4. #
  5. # DCX file handling
  6. #
  7. # DCX is a container file format defined by Intel, commonly used
  8. # for fax applications. Each DCX file consists of a directory
  9. # (a list of file offsets) followed by a set of (usually 1-bit)
  10. # PCX files.
  11. #
  12. # History:
  13. # 1995-09-09 fl Created
  14. # 1996-03-20 fl Properly derived from PcxImageFile.
  15. # 1998-07-15 fl Renamed offset attribute to avoid name clash
  16. # 2002-07-30 fl Fixed file handling
  17. #
  18. # Copyright (c) 1997-98 by Secret Labs AB.
  19. # Copyright (c) 1995-96 by Fredrik Lundh.
  20. #
  21. # See the README file for information on usage and redistribution.
  22. #
  23. from . import Image
  24. from ._binary import i32le as i32
  25. from .PcxImagePlugin import PcxImageFile
  26. MAGIC = 0x3ADE68B1 # QUIZ: what's this value, then?
  27. def _accept(prefix):
  28. return len(prefix) >= 4 and i32(prefix) == MAGIC
  29. ##
  30. # Image plugin for the Intel DCX format.
  31. class DcxImageFile(PcxImageFile):
  32. format = "DCX"
  33. format_description = "Intel DCX"
  34. _close_exclusive_fp_after_loading = False
  35. def _open(self):
  36. # Header
  37. s = self.fp.read(4)
  38. if not _accept(s):
  39. raise SyntaxError("not a DCX file")
  40. # Component directory
  41. self._offset = []
  42. for i in range(1024):
  43. offset = i32(self.fp.read(4))
  44. if not offset:
  45. break
  46. self._offset.append(offset)
  47. self.__fp = self.fp
  48. self.frame = None
  49. self.n_frames = len(self._offset)
  50. self.is_animated = self.n_frames > 1
  51. self.seek(0)
  52. def seek(self, frame):
  53. if not self._seek_check(frame):
  54. return
  55. self.frame = frame
  56. self.fp = self.__fp
  57. self.fp.seek(self._offset[frame])
  58. PcxImageFile._open(self)
  59. def tell(self):
  60. return self.frame
  61. def _close__fp(self):
  62. try:
  63. if self.__fp != self.fp:
  64. self.__fp.close()
  65. except AttributeError:
  66. pass
  67. finally:
  68. self.__fp = None
  69. Image.register_open(DcxImageFile.format, DcxImageFile, _accept)
  70. Image.register_extension(DcxImageFile.format, ".dcx")