Pillow/src/PIL/MicImagePlugin.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
2.6 KiB
Python
Raw Normal View History

2010-07-31 06:52:47 +04:00
#
# The Python Imaging Library.
# $Id$
#
# Microsoft Image Composer support for PIL
#
# Notes:
# uses TiffImagePlugin.py to read the actual image streams
#
# History:
# 97-01-20 fl Created
#
# Copyright (c) Secret Labs AB 1997.
# Copyright (c) Fredrik Lundh 1997.
#
# See the README file for information on usage and redistribution.
#
from __future__ import annotations
2010-07-31 06:52:47 +04:00
import olefile
2010-07-31 06:52:47 +04:00
from . import Image, TiffImagePlugin
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
2024-04-06 05:58:53 +03:00
def _accept(prefix: bytes) -> bool:
return prefix[:8] == olefile.MAGIC
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 Microsoft's Image Composer file format.
2019-03-21 16:28:20 +03:00
2010-07-31 06:52:47 +04:00
class MicImageFile(TiffImagePlugin.TiffImageFile):
format = "MIC"
format_description = "Microsoft Image Composer"
_close_exclusive_fp_after_loading = False
2010-07-31 06:52:47 +04:00
2024-05-04 13:51:54 +03:00
def _open(self) -> None:
2010-07-31 06:52:47 +04:00
# read the OLE directory and see if this is a likely
# to be a Microsoft Image Composer file
try:
self.ole = olefile.OleFileIO(self.fp)
except OSError as e:
msg = "not an MIC file; invalid OLE file"
raise SyntaxError(msg) from e
2010-07-31 06:52:47 +04:00
# find ACI subfiles with Image members (maybe not the
# best way to identify MIC files, but what the... ;-)
self.images = [
path
for path in self.ole.listdir()
if path[1:] and path[0][-4:] == ".ACI" and path[1] == "Image"
]
2010-07-31 06:52:47 +04:00
# if we didn't find any images, this is probably not
# an MIC file.
if not self.images:
msg = "not an MIC file; no image entries"
raise SyntaxError(msg)
2010-07-31 06:52:47 +04:00
2024-06-12 14:15:55 +03:00
self.frame = -1
self._n_frames = len(self.images)
self.is_animated = self._n_frames > 1
2010-07-31 06:52:47 +04:00
self.__fp = self.fp
2010-07-31 06:52:47 +04:00
self.seek(0)
2024-07-02 13:10:47 +03:00
def seek(self, frame: int) -> None:
if not self._seek_check(frame):
return
2010-07-31 06:52:47 +04:00
try:
filename = self.images[frame]
except IndexError as e:
msg = "no such frame"
raise EOFError(msg) from e
2010-07-31 06:52:47 +04:00
self.fp = self.ole.openstream(filename)
TiffImagePlugin.TiffImageFile._open(self)
self.frame = frame
2024-06-12 14:15:55 +03:00
def tell(self) -> int:
2010-07-31 06:52:47 +04:00
return self.frame
2024-05-04 13:51:54 +03:00
def close(self) -> None:
self.__fp.close()
self.ole.close()
super().close()
2024-06-11 16:26:00 +03:00
def __exit__(self, *args: object) -> None:
self.__fp.close()
self.ole.close()
super().__exit__()
2017-03-13 09:18:13 +03:00
2010-07-31 06:52:47 +04:00
#
# --------------------------------------------------------------------
Image.register_open(MicImageFile.format, MicImageFile, _accept)
2010-07-31 06:52:47 +04:00
Image.register_extension(MicImageFile.format, ".mic")