2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# The Python Imaging Library.
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# EPS file handling
|
|
|
|
#
|
|
|
|
# History:
|
|
|
|
# 1995-09-01 fl Created (0.1)
|
|
|
|
# 1996-05-18 fl Don't choke on "atend" fields, Ghostscript interface (0.2)
|
|
|
|
# 1996-08-22 fl Don't choke on floating point BoundingBox values
|
|
|
|
# 1996-08-23 fl Handle files from Macintosh (0.3)
|
|
|
|
# 2001-02-17 fl Use 're' instead of 'regex' (Python 2.1) (0.4)
|
|
|
|
# 2003-09-07 fl Check gs.close status (from Federico Di Gregorio) (0.5)
|
2014-08-26 17:47:10 +04:00
|
|
|
# 2014-05-07 e Handling of EPS with binary preview and fixed resolution
|
|
|
|
# resizing
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# Copyright (c) 1997-2003 by Secret Labs AB.
|
|
|
|
# Copyright (c) 1995-2003 by Fredrik Lundh
|
|
|
|
#
|
|
|
|
# See the README file for information on usage and redistribution.
|
|
|
|
#
|
|
|
|
|
|
|
|
__version__ = "0.5"
|
|
|
|
|
2012-10-11 02:11:13 +04:00
|
|
|
import re
|
2012-10-24 07:21:19 +04:00
|
|
|
import io
|
2013-03-07 20:20:28 +04:00
|
|
|
from PIL import Image, ImageFile, _binary
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
py3k: The big push
There are two main issues fixed with this commit:
* bytes vs. str: All file, image, and palette data are now handled as
bytes. A new _binary module consolidates the hacks needed to do this
across Python versions. tostring/fromstring methods have been renamed to
tobytes/frombytes, but the Python 2.6/2.7 versions alias them to the old
names for compatibility. Users should move to tobytes/frombytes.
One other potentially-breaking change is that text data in image files
(such as tags, comments) are now explicitly handled with a specific
character encoding in mind. This works well with the Unicode str in
Python 3, but may trip up old code expecting a straight byte-for-byte
translation to a Python string. This also required a change to Gohlke's
tags tests (in Tests/test_file_png.py) to expect Unicode strings from
the code.
* True div vs. floor div: Many division operations used the "/" operator
to do floor division, which is now the "//" operator in Python 3. These
were fixed.
As of this commit, on the first pass, I have one failing test (improper
handling of a slice object in a C module, test_imagepath.py) in Python 3,
and three that that I haven't tried running yet (test_imagegl,
test_imagegrab, and test_imageqt). I also haven't tested anything on
Windows. All but the three skipped tests run flawlessly against Pythons
2.6 and 2.7.
2012-10-21 01:01:53 +04:00
|
|
|
i32 = _binary.i32le
|
|
|
|
o32 = _binary.o32le
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
split = re.compile(r"^%%([^:]*):[ \t]*(.*)[ \t]*$")
|
|
|
|
field = re.compile(r"^%[%!\w]([^:]*)[ \t]*$")
|
|
|
|
|
2013-03-06 21:36:22 +04:00
|
|
|
gs_windows_binary = None
|
|
|
|
import sys
|
2013-03-08 23:15:28 +04:00
|
|
|
if sys.platform.startswith('win'):
|
2013-03-06 21:36:22 +04:00
|
|
|
import shutil
|
|
|
|
if hasattr(shutil, 'which'):
|
|
|
|
which = shutil.which
|
|
|
|
else:
|
|
|
|
# Python < 3.3
|
2013-03-08 23:15:28 +04:00
|
|
|
import distutils.spawn
|
2013-03-06 21:36:22 +04:00
|
|
|
which = distutils.spawn.find_executable
|
|
|
|
for binary in ('gswin32c', 'gswin64c', 'gs'):
|
|
|
|
if which(binary) is not None:
|
|
|
|
gs_windows_binary = binary
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
gs_windows_binary = False
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2014-04-05 00:33:54 +04:00
|
|
|
def has_ghostscript():
|
|
|
|
if gs_windows_binary:
|
|
|
|
return True
|
|
|
|
if not sys.platform.startswith('win'):
|
|
|
|
import subprocess
|
|
|
|
try:
|
2014-08-26 17:47:10 +04:00
|
|
|
gs = subprocess.Popen(['gs', '--version'], stdout=subprocess.PIPE)
|
2014-04-05 00:33:54 +04:00
|
|
|
gs.stdout.read()
|
|
|
|
return True
|
|
|
|
except OSError:
|
|
|
|
# no ghostscript
|
|
|
|
pass
|
|
|
|
return False
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2014-04-05 00:33:54 +04:00
|
|
|
|
2013-11-17 11:26:44 +04:00
|
|
|
def Ghostscript(tile, size, fp, scale=1):
|
2013-03-06 21:36:22 +04:00
|
|
|
"""Render an image using Ghostscript"""
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
# Unpack decoder tile
|
|
|
|
decoder, tile, offset, data = tile[0]
|
|
|
|
length, bbox = data
|
2014-08-26 17:47:10 +04:00
|
|
|
|
|
|
|
# Hack to support hi-res rendering
|
2013-11-17 11:26:44 +04:00
|
|
|
scale = int(scale) or 1
|
2014-08-26 17:47:10 +04:00
|
|
|
# orig_size = size
|
|
|
|
# orig_bbox = bbox
|
2013-11-17 11:26:44 +04:00
|
|
|
size = (size[0] * scale, size[1] * scale)
|
2014-08-26 17:47:10 +04:00
|
|
|
# resolution is dependent on bbox and size
|
|
|
|
res = (float((72.0 * size[0]) / (bbox[2]-bbox[0])),
|
|
|
|
float((72.0 * size[1]) / (bbox[3]-bbox[1])))
|
|
|
|
# print("Ghostscript", scale, size, orig_size, bbox, orig_bbox, res)
|
2013-11-17 11:26:44 +04:00
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
import tempfile
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-03-15 02:56:41 +04:00
|
|
|
out_fd, outfile = tempfile.mkstemp()
|
|
|
|
os.close(out_fd)
|
2014-09-03 10:09:04 +04:00
|
|
|
|
|
|
|
infile_temp = None
|
|
|
|
if hasattr(fp, 'name') and os.path.exists(fp.name):
|
|
|
|
infile = fp.name
|
|
|
|
else:
|
|
|
|
in_fd, infile_temp = tempfile.mkstemp()
|
|
|
|
os.close(in_fd)
|
|
|
|
infile = infile_temp
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2014-09-03 10:09:04 +04:00
|
|
|
# ignore length and offset!
|
2014-09-14 13:08:31 +04:00
|
|
|
# ghostscript can read it
|
2014-09-03 10:09:04 +04:00
|
|
|
# copy whole file to read in ghostscript
|
|
|
|
with open(infile_temp, 'wb') as f:
|
|
|
|
# fetch length of fp
|
|
|
|
fp.seek(0, 2)
|
|
|
|
fsize = fp.tell()
|
|
|
|
# ensure start position
|
|
|
|
# go back
|
|
|
|
fp.seek(0)
|
|
|
|
lengthfile = fsize
|
|
|
|
while lengthfile > 0:
|
|
|
|
s = fp.read(min(lengthfile, 100*1024))
|
|
|
|
if not s:
|
|
|
|
break
|
|
|
|
lengthfile -= len(s)
|
|
|
|
f.write(s)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
# Build ghostscript command
|
|
|
|
command = ["gs",
|
2014-08-26 17:47:10 +04:00
|
|
|
"-q", # quiet mode
|
|
|
|
"-g%dx%d" % size, # set output geometry (pixels)
|
|
|
|
"-r%fx%f" % res, # set input DPI (dots per inch)
|
2014-08-28 18:18:54 +04:00
|
|
|
"-dNOPAUSE -dSAFER", # don't pause between pages,
|
|
|
|
# safe mode
|
2014-08-26 17:47:10 +04:00
|
|
|
"-sDEVICE=ppmraw", # ppm driver
|
|
|
|
"-sOutputFile=%s" % outfile, # output file
|
2014-01-22 11:18:24 +04:00
|
|
|
"-c", "%d %d translate" % (-bbox[0], -bbox[1]),
|
2014-08-26 17:47:10 +04:00
|
|
|
# adjust for image origin
|
|
|
|
"-f", infile, # input file
|
|
|
|
]
|
|
|
|
|
2013-03-06 21:36:22 +04:00
|
|
|
if gs_windows_binary is not None:
|
2014-01-09 07:07:35 +04:00
|
|
|
if not gs_windows_binary:
|
2013-03-06 21:36:22 +04:00
|
|
|
raise WindowsError('Unable to locate Ghostscript on paths')
|
|
|
|
command[0] = gs_windows_binary
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
# push data through ghostscript
|
|
|
|
try:
|
2014-08-26 17:47:10 +04:00
|
|
|
gs = subprocess.Popen(command, stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE)
|
2013-11-20 11:32:06 +04:00
|
|
|
gs.stdin.close()
|
|
|
|
status = gs.wait()
|
2010-07-31 06:52:47 +04:00
|
|
|
if status:
|
|
|
|
raise IOError("gs failed (status %d)" % status)
|
2014-01-22 11:18:24 +04:00
|
|
|
im = Image.core.open_ppm(outfile)
|
2010-07-31 06:52:47 +04:00
|
|
|
finally:
|
2014-01-22 11:18:24 +04:00
|
|
|
try:
|
|
|
|
os.unlink(outfile)
|
2014-09-14 13:08:31 +04:00
|
|
|
if infile_temp:
|
2014-09-03 10:09:04 +04:00
|
|
|
os.unlink(infile_temp)
|
2014-09-14 13:08:31 +04:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
return im
|
|
|
|
|
|
|
|
|
|
|
|
class PSFile:
|
2014-09-14 13:08:31 +04:00
|
|
|
"""
|
|
|
|
Wrapper for bytesio object that treats either CR or LF as end of line.
|
|
|
|
"""
|
2010-07-31 06:52:47 +04:00
|
|
|
def __init__(self, fp):
|
|
|
|
self.fp = fp
|
|
|
|
self.char = None
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
def seek(self, offset, whence=0):
|
|
|
|
self.char = None
|
|
|
|
self.fp.seek(offset, whence)
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
def readline(self):
|
2014-08-09 02:47:39 +04:00
|
|
|
s = self.char or b""
|
|
|
|
self.char = None
|
|
|
|
|
|
|
|
c = self.fp.read(1)
|
py3k: The big push
There are two main issues fixed with this commit:
* bytes vs. str: All file, image, and palette data are now handled as
bytes. A new _binary module consolidates the hacks needed to do this
across Python versions. tostring/fromstring methods have been renamed to
tobytes/frombytes, but the Python 2.6/2.7 versions alias them to the old
names for compatibility. Users should move to tobytes/frombytes.
One other potentially-breaking change is that text data in image files
(such as tags, comments) are now explicitly handled with a specific
character encoding in mind. This works well with the Unicode str in
Python 3, but may trip up old code expecting a straight byte-for-byte
translation to a Python string. This also required a change to Gohlke's
tags tests (in Tests/test_file_png.py) to expect Unicode strings from
the code.
* True div vs. floor div: Many division operations used the "/" operator
to do floor division, which is now the "//" operator in Python 3. These
were fixed.
As of this commit, on the first pass, I have one failing test (improper
handling of a slice object in a C module, test_imagepath.py) in Python 3,
and three that that I haven't tried running yet (test_imagegl,
test_imagegrab, and test_imageqt). I also haven't tested anything on
Windows. All but the three skipped tests run flawlessly against Pythons
2.6 and 2.7.
2012-10-21 01:01:53 +04:00
|
|
|
while c not in b"\r\n":
|
2010-07-31 06:52:47 +04:00
|
|
|
s = s + c
|
|
|
|
c = self.fp.read(1)
|
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
self.char = self.fp.read(1)
|
|
|
|
# line endings can be 1 or 2 of \r \n, in either order
|
|
|
|
if self.char in b"\r\n":
|
|
|
|
self.char = None
|
2014-09-14 13:08:31 +04:00
|
|
|
|
|
|
|
return s.decode('latin-1')
|
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
def _accept(prefix):
|
py3k: The big push
There are two main issues fixed with this commit:
* bytes vs. str: All file, image, and palette data are now handled as
bytes. A new _binary module consolidates the hacks needed to do this
across Python versions. tostring/fromstring methods have been renamed to
tobytes/frombytes, but the Python 2.6/2.7 versions alias them to the old
names for compatibility. Users should move to tobytes/frombytes.
One other potentially-breaking change is that text data in image files
(such as tags, comments) are now explicitly handled with a specific
character encoding in mind. This works well with the Unicode str in
Python 3, but may trip up old code expecting a straight byte-for-byte
translation to a Python string. This also required a change to Gohlke's
tags tests (in Tests/test_file_png.py) to expect Unicode strings from
the code.
* True div vs. floor div: Many division operations used the "/" operator
to do floor division, which is now the "//" operator in Python 3. These
were fixed.
As of this commit, on the first pass, I have one failing test (improper
handling of a slice object in a C module, test_imagepath.py) in Python 3,
and three that that I haven't tried running yet (test_imagegl,
test_imagegrab, and test_imageqt). I also haven't tested anything on
Windows. All but the three skipped tests run flawlessly against Pythons
2.6 and 2.7.
2012-10-21 01:01:53 +04:00
|
|
|
return prefix[:4] == b"%!PS" or i32(prefix) == 0xC6D3D0C5
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
##
|
|
|
|
# Image plugin for Encapsulated Postscript. This plugin supports only
|
|
|
|
# a few variants of this format.
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
class EpsImageFile(ImageFile.ImageFile):
|
|
|
|
"""EPS File Parser for the Python Imaging Library"""
|
|
|
|
|
|
|
|
format = "EPS"
|
|
|
|
format_description = "Encapsulated Postscript"
|
|
|
|
|
2014-09-14 13:08:31 +04:00
|
|
|
mode_map = {1: "L", 2: "LAB", 3: "RGB"}
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
def _open(self):
|
2014-08-05 02:28:57 +04:00
|
|
|
(length, offset) = self._find_offset(self.fp)
|
2014-05-07 15:36:35 +04:00
|
|
|
|
2014-08-05 02:28:57 +04:00
|
|
|
# Rewrap the open file pointer in something that will
|
|
|
|
# convert line endings and decode to latin-1.
|
2014-08-05 01:48:42 +04:00
|
|
|
try:
|
2014-08-05 02:28:57 +04:00
|
|
|
if bytes is str:
|
2014-08-09 02:47:39 +04:00
|
|
|
# Python2, no encoding conversion necessary
|
|
|
|
fp = open(self.fp.name, "Ur")
|
2014-08-05 02:28:57 +04:00
|
|
|
else:
|
2014-09-14 13:08:31 +04:00
|
|
|
# Python3, can use bare open command.
|
2014-08-05 02:28:57 +04:00
|
|
|
fp = open(self.fp.name, "Ur", encoding='latin-1')
|
2014-09-14 13:08:31 +04:00
|
|
|
except:
|
2014-08-05 02:28:57 +04:00
|
|
|
# Expect this for bytesio/stringio
|
2014-08-05 01:48:42 +04:00
|
|
|
fp = PSFile(self.fp)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
# go to offset - start of "%!PS"
|
2010-07-31 06:52:47 +04:00
|
|
|
fp.seek(offset)
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
box = None
|
|
|
|
|
|
|
|
self.mode = "RGB"
|
2014-08-26 17:47:10 +04:00
|
|
|
self.size = 1, 1 # FIXME: huh?
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Load EPS header
|
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
s = fp.readline().strip('\r\n')
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
while s:
|
|
|
|
if len(s) > 255:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not an EPS file")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
try:
|
|
|
|
m = split.match(s)
|
2012-10-11 07:52:53 +04:00
|
|
|
except re.error as v:
|
|
|
|
raise SyntaxError("not an EPS file")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
if m:
|
|
|
|
k, v = m.group(1, 2)
|
|
|
|
self.info[k] = v
|
|
|
|
if k == "BoundingBox":
|
|
|
|
try:
|
|
|
|
# Note: The DSC spec says that BoundingBox
|
|
|
|
# fields should be integers, but some drivers
|
|
|
|
# put floating point values there anyway.
|
2012-10-16 05:58:46 +04:00
|
|
|
box = [int(float(s)) for s in v.split()]
|
2010-07-31 06:52:47 +04:00
|
|
|
self.size = box[2] - box[0], box[3] - box[1]
|
2014-08-26 17:47:10 +04:00
|
|
|
self.tile = [("eps", (0, 0) + self.size, offset,
|
2010-07-31 06:52:47 +04:00
|
|
|
(length, box))]
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
|
|
|
m = field.match(s)
|
|
|
|
if m:
|
|
|
|
k = m.group(1)
|
2012-10-24 07:21:19 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
if k == "EndComments":
|
|
|
|
break
|
|
|
|
if k[:8] == "PS-Adobe":
|
|
|
|
self.info[k[:8]] = k[9:]
|
|
|
|
else:
|
|
|
|
self.info[k] = ""
|
2014-08-09 02:47:39 +04:00
|
|
|
elif s[0] == '%':
|
2012-04-26 19:00:22 +04:00
|
|
|
# handle non-DSC Postscript comments that some
|
|
|
|
# tools mistakenly put in the Comments section
|
|
|
|
pass
|
2010-07-31 06:52:47 +04:00
|
|
|
else:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise IOError("bad EPS header")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
s = fp.readline().strip('\r\n')
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
if s[0] != "%":
|
2010-07-31 06:52:47 +04:00
|
|
|
break
|
|
|
|
|
|
|
|
#
|
|
|
|
# Scan for an "ImageData" descriptor
|
|
|
|
|
|
|
|
while s[0] == "%":
|
|
|
|
|
|
|
|
if len(s) > 255:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise SyntaxError("not an EPS file")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
if s[:11] == "%ImageData:":
|
2014-08-08 03:41:10 +04:00
|
|
|
# Encoded bitmapped image.
|
2014-08-09 02:47:39 +04:00
|
|
|
[x, y, bi, mo, z3, z4, en, id] = s[11:].split(None, 7)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
if int(bi) != 8:
|
2010-07-31 06:52:47 +04:00
|
|
|
break
|
2014-08-09 02:47:39 +04:00
|
|
|
try:
|
|
|
|
self.mode = self.mode_map[int(mo)]
|
|
|
|
except:
|
2010-07-31 06:52:47 +04:00
|
|
|
break
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
self.size = int(x), int(y)
|
2014-08-08 03:41:10 +04:00
|
|
|
return
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2014-08-09 02:47:39 +04:00
|
|
|
s = fp.readline().strip('\r\n')
|
2010-07-31 06:52:47 +04:00
|
|
|
if not s:
|
|
|
|
break
|
|
|
|
|
|
|
|
if not box:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise IOError("cannot determine EPS bounding box")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2014-08-05 02:28:57 +04:00
|
|
|
def _find_offset(self, fp):
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2014-08-05 02:28:57 +04:00
|
|
|
s = fp.read(160)
|
2014-09-14 13:08:31 +04:00
|
|
|
|
2014-08-05 02:28:57 +04:00
|
|
|
if s[:4] == b"%!PS":
|
|
|
|
# for HEAD without binary preview
|
|
|
|
fp.seek(0, 2)
|
|
|
|
length = fp.tell()
|
|
|
|
offset = 0
|
|
|
|
elif i32(s[0:4]) == 0xC6D3D0C5:
|
2014-09-14 13:08:31 +04:00
|
|
|
# FIX for: Some EPS file not handled correctly / issue #302
|
2014-08-05 02:28:57 +04:00
|
|
|
# EPS can contain binary data
|
|
|
|
# or start directly with latin coding
|
2014-09-14 13:08:31 +04:00
|
|
|
# more info see:
|
|
|
|
# http://partners.adobe.com/public/developer/en/ps/5002.EPSF_Spec.pdf
|
2014-08-05 02:28:57 +04:00
|
|
|
offset = i32(s[4:8])
|
|
|
|
length = i32(s[8:12])
|
|
|
|
else:
|
|
|
|
raise SyntaxError("not an EPS file")
|
|
|
|
|
|
|
|
return (length, offset)
|
|
|
|
|
2013-11-17 11:26:44 +04:00
|
|
|
def load(self, scale=1):
|
2010-07-31 06:52:47 +04:00
|
|
|
# Load EPS via Ghostscript
|
|
|
|
if not self.tile:
|
|
|
|
return
|
2013-11-17 11:26:44 +04:00
|
|
|
self.im = Ghostscript(self.tile, self.size, self.fp, scale)
|
2010-07-31 06:52:47 +04:00
|
|
|
self.mode = self.im.mode
|
|
|
|
self.size = self.im.size
|
|
|
|
self.tile = []
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
def load_seek(self, *args, **kwargs):
|
2014-01-22 11:17:47 +04:00
|
|
|
# we can't incrementally load, so force ImageFile.parser to
|
2014-08-26 17:47:10 +04:00
|
|
|
# use our custom load method by defining this method.
|
2014-01-22 11:17:47 +04:00
|
|
|
pass
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
def _save(im, fp, filename, eps=1):
|
|
|
|
"""EPS Writer for the Python Imaging Library."""
|
|
|
|
|
|
|
|
#
|
|
|
|
# make sure image data is available
|
|
|
|
im.load()
|
|
|
|
|
|
|
|
#
|
|
|
|
# determine postscript image mode
|
|
|
|
if im.mode == "L":
|
2012-10-24 07:21:19 +04:00
|
|
|
operator = (8, 1, "image")
|
2010-07-31 06:52:47 +04:00
|
|
|
elif im.mode == "RGB":
|
2012-10-24 07:21:19 +04:00
|
|
|
operator = (8, 3, "false 3 colorimage")
|
2010-07-31 06:52:47 +04:00
|
|
|
elif im.mode == "CMYK":
|
2012-10-24 07:21:19 +04:00
|
|
|
operator = (8, 4, "false 4 colorimage")
|
2010-07-31 06:52:47 +04:00
|
|
|
else:
|
2012-10-11 07:52:53 +04:00
|
|
|
raise ValueError("image mode is not supported")
|
2010-07-31 06:52:47 +04:00
|
|
|
|
2012-10-24 07:21:19 +04:00
|
|
|
class NoCloseStream:
|
|
|
|
def __init__(self, fp):
|
|
|
|
self.fp = fp
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2012-10-24 07:21:19 +04:00
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self.fp, name)
|
2014-08-26 17:47:10 +04:00
|
|
|
|
2012-10-24 07:21:19 +04:00
|
|
|
def close(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
base_fp = fp
|
2014-01-12 03:04:01 +04:00
|
|
|
fp = NoCloseStream(fp)
|
|
|
|
if sys.version_info[0] > 2:
|
|
|
|
fp = io.TextIOWrapper(fp, encoding='latin-1')
|
2012-10-24 07:21:19 +04:00
|
|
|
|
2010-07-31 06:52:47 +04:00
|
|
|
if eps:
|
|
|
|
#
|
|
|
|
# write EPS header
|
2012-10-24 07:21:19 +04:00
|
|
|
fp.write("%!PS-Adobe-3.0 EPSF-3.0\n")
|
|
|
|
fp.write("%%Creator: PIL 0.1 EpsEncode\n")
|
2014-08-26 17:47:10 +04:00
|
|
|
# fp.write("%%CreationDate: %s"...)
|
2012-10-24 07:21:19 +04:00
|
|
|
fp.write("%%%%BoundingBox: 0 0 %d %d\n" % im.size)
|
|
|
|
fp.write("%%Pages: 1\n")
|
|
|
|
fp.write("%%EndComments\n")
|
|
|
|
fp.write("%%Page: 1 1\n")
|
|
|
|
fp.write("%%ImageData: %d %d " % im.size)
|
|
|
|
fp.write("%d %d 0 1 1 \"%s\"\n" % operator)
|
2010-07-31 06:52:47 +04:00
|
|
|
|
|
|
|
#
|
|
|
|
# image header
|
2012-10-24 07:21:19 +04:00
|
|
|
fp.write("gsave\n")
|
|
|
|
fp.write("10 dict begin\n")
|
|
|
|
fp.write("/buf %d string def\n" % (im.size[0] * operator[1]))
|
|
|
|
fp.write("%d %d scale\n" % im.size)
|
2014-08-26 17:47:10 +04:00
|
|
|
fp.write("%d %d 8\n" % im.size) # <= bits
|
2012-10-24 07:21:19 +04:00
|
|
|
fp.write("[%d 0 0 -%d 0 %d]\n" % (im.size[0], im.size[1], im.size[1]))
|
|
|
|
fp.write("{ currentfile buf readhexstring pop } bind\n")
|
|
|
|
fp.write(operator[2] + "\n")
|
|
|
|
fp.flush()
|
|
|
|
|
2014-08-26 17:47:10 +04:00
|
|
|
ImageFile._save(im, base_fp, [("eps", (0, 0)+im.size, 0, None)])
|
2012-10-24 07:21:19 +04:00
|
|
|
|
|
|
|
fp.write("\n%%%%EndBinary\n")
|
|
|
|
fp.write("grestore end\n")
|
2010-07-31 06:52:47 +04:00
|
|
|
fp.flush()
|
|
|
|
|
|
|
|
#
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
|
|
|
Image.register_open(EpsImageFile.format, EpsImageFile, _accept)
|
|
|
|
|
|
|
|
Image.register_save(EpsImageFile.format, _save)
|
|
|
|
|
|
|
|
Image.register_extension(EpsImageFile.format, ".ps")
|
|
|
|
Image.register_extension(EpsImageFile.format, ".eps")
|
|
|
|
|
|
|
|
Image.register_mime(EpsImageFile.format, "application/postscript")
|