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.
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2016-11-05 21:11:30 +03:00
|
|
|
import olefile
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
from . import Image, TiffImagePlugin
|
|
|
|
|
2019-02-03 04:35:40 +03:00
|
|
|
# __version__ is deprecated and will be removed in a future version. Use
|
|
|
|
# PIL.__version__ instead.
|
2015-08-25 15:27:18 +03:00
|
|
|
__version__ = "0.1"
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
def _accept(prefix):
|
2016-11-05 21:11:30 +03:00
|
|
|
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"
|
2017-03-15 02:16:38 +03:00
|
|
|
_close_exclusive_fp_after_loading = False
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
def _open(self):
|
|
|
|
|
|
|
|
# read the OLE directory and see if this is a likely
|
|
|
|
# to be a Microsoft Image Composer file
|
|
|
|
|
|
|
|
try:
|
2016-11-05 21:11:30 +03:00
|
|
|
self.ole = olefile.OleFileIO(self.fp)
|
2010-07-31 06:52:47 +04:00
|
|
|
except IOError:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not an MIC file; invalid OLE file")
|
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 = []
|
2015-04-24 11:24:52 +03:00
|
|
|
for path in self.ole.listdir():
|
|
|
|
if path[1:] and path[0][-4:] == ".ACI" and path[1] == "Image":
|
|
|
|
self.images.append(path)
|
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:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not an MIC file; no image entries")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
self.__fp = self.fp
|
2017-09-30 06:32:43 +03:00
|
|
|
self.frame = None
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
if len(self.images) > 1:
|
|
|
|
self.category = Image.CONTAINER
|
|
|
|
|
|
|
|
self.seek(0)
|
|
|
|
|
2015-04-15 03:43:05 +03:00
|
|
|
@property
|
|
|
|
def n_frames(self):
|
|
|
|
return len(self.images)
|
|
|
|
|
2015-06-30 06:25:00 +03:00
|
|
|
@property
|
|
|
|
def is_animated(self):
|
|
|
|
return len(self.images) > 1
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
def seek(self, frame):
|
2017-09-30 06:32:43 +03:00
|
|
|
if not self._seek_check(frame):
|
|
|
|
return
|
2010-07-31 06:52:47 +04:00
|
|
|
try:
|
|
|
|
filename = self.images[frame]
|
|
|
|
except IndexError:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise EOFError("no such frame")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
self.fp = self.ole.openstream(filename)
|
|
|
|
|
|
|
|
TiffImagePlugin.TiffImageFile._open(self)
|
|
|
|
|
|
|
|
self.frame = frame
|
|
|
|
|
|
|
|
def tell(self):
|
|
|
|
return self.frame
|
|
|
|
|
2018-11-17 13:56:06 +03:00
|
|
|
def _close__fp(self):
|
|
|
|
try:
|
2019-01-04 04:29:23 +03:00
|
|
|
if self.__fp != self.fp:
|
|
|
|
self.__fp.close()
|
2018-11-17 13:56:06 +03:00
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
finally:
|
|
|
|
self.__fp = None
|
|
|
|
|
2017-03-13 09:18:13 +03:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2015-07-04 16:29:58 +03:00
|
|
|
Image.register_open(MicImageFile.format, MicImageFile, _accept)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2015-07-04 16:29:58 +03:00
|
|
|
Image.register_extension(MicImageFile.format, ".mic")
|