2 # -*- coding: ISO-8859-1 -*-
5 # Copyright (C) 2005 Jörg Lehmann <joergl@users.sourceforge.net>
6 # Copyright (C) 2005 André Wobst <wobsta@users.sourceforge.net>
8 # This file is part of PyX (http://pyx.sourceforge.net/).
10 # PyX is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
15 # PyX is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with PyX; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 import copy
, time
, math
25 import style
, version
, type1font
, unit
31 # in order to keep a consistent order of the registered resources we
32 # not only store them in a hash but also keep an ordered list (up to a
33 # possible merging of resources, in which case the first instance is
35 self
.resourceshash
= {}
36 self
.resourceslist
= []
38 def add(self
, resource
):
39 rkey
= (resource
.type, resource
.id)
40 if self
.resourceshash
.has_key(rkey
):
41 self
.resourceshash
[rkey
].merge(resource
)
43 self
.resourceshash
[rkey
] = resource
44 self
.resourceslist
.append(resource
)
46 def outputPS(self
, file, writer
):
47 """ write all PostScript code of the prolog resources """
48 for resource
in self
.resourceslist
:
49 resource
.outputPS(file, writer
, self
)
57 """ a PostScript resource """
59 def __init__(self
, type, id):
60 # Every PSresource has to have a type and a unique id.
61 # Resources with the same type and id will be merged
62 # when they are registered in the PSregistry
66 def merge(self
, other
):
67 """ merge self with other, which has to be a resource of the same type and with
71 def outputPS(self
, file, writer
, registry
):
72 raise NotImplementedError("outputPS not implemented for %s" % repr(self
))
75 # Different variants of prolog items
78 class PSdefinition(PSresource
):
80 """ PostScript function definition included in the prolog """
82 def __init__(self
, id, body
):
83 self
.type = "definition"
87 def outputPS(self
, file, writer
, registry
):
88 file.write("%%%%BeginRessource: %s\n" % self
.id)
89 file.write("%(body)s /%(id)s exch def\n" % self
.__dict
__)
90 file.write("%%EndRessource\n")
95 def __init__(self
, font
, chars
, registry
):
97 registry
.add(PSfontfile(font
.basefontname
,
102 registry
.add(_ReEncodeFont
)
103 registry
.add(PSfontencoding(font
.encoding
))
104 registry
.add(PSfontreencoding(font
.name
,
109 class PSfontfile(PSresource
):
111 """ PostScript font definition included in the prolog """
113 def __init__(self
, name
, filename
, encoding
, chars
):
114 """ include type 1 font defined by the following parameters
116 - name: name of the PostScript font
117 - filename: name (without path) of file containing the font definition
118 - encfilename: name (without path) of file containing used encoding of font
119 or None (if no encoding file used)
120 - chars: character list to fill usedchars
124 # Note that here we only need the encoding for selecting the used glyphs!
126 self
.type = "fontfile"
127 self
.id = self
.name
= name
128 self
.filename
= filename
130 self
.encodingfilename
= None
132 self
.encodingfilename
= encoding
.filename
135 self
.usedchars
[char
] = 1
137 def merge(self
, other
):
138 if self
.encodingfilename
== other
.encodingfilename
:
139 self
.usedchars
.update(other
.usedchars
)
141 self
.usedchars
= None # stripping of font not possible
143 def outputPS(self
, file, writer
, registry
):
144 fontfile
= type1font
.fontfile(self
.name
, self
.filename
, self
.usedchars
, self
.encodingfilename
)
145 fontfile
.outputPS(file, writer
, registry
)
148 class PSfontencoding(PSresource
):
150 """ PostScript font encoding vector included in the prolog """
152 def __init__(self
, encoding
):
153 """ include font encoding vector specified by encoding """
155 self
.type = "fontencoding"
156 self
.id = encoding
.name
157 self
.encoding
= encoding
159 def outputPS(self
, file, writer
, registry
):
160 encodingfile
= type1font
.encodingfile(self
.encoding
.name
, self
.encoding
.filename
)
161 encodingfile
.outputPS(file, writer
, registry
)
164 class PSfontreencoding(PSresource
):
166 """ PostScript font re-encoding directive included in the prolog """
168 def __init__(self
, fontname
, basefontname
, encodingname
):
169 """ include font re-encoding directive specified by
171 - fontname: PostScript FontName of the new reencoded font
172 - basefontname: PostScript FontName of the original font
173 - encname: name of the encoding
174 - font: a reference to the font instance (temporarily added for pdf support)
176 Before being able to reencode a font, you have to include the
177 encoding via a fontencoding prolog item with name=encname
181 self
.type = "fontreencoding"
182 self
.id = self
.fontname
= fontname
183 self
.basefontname
= basefontname
184 self
.encodingname
= encodingname
186 def outputPS(self
, file, writer
, registry
):
187 file.write("%%%%BeginProcSet: %s\n" % self
.fontname
)
188 file.write("/%s /%s %s ReEncodeFont\n" % (self
.basefontname
, self
.fontname
, self
.encodingname
))
189 file.write("%%EndProcSet\n")
192 _ReEncodeFont
= PSdefinition("ReEncodeFont", """{
195 /newencoding exch def
196 /newfontname exch def
197 /basefontname exch def
198 /basefontdict basefontname findfont def
199 /newfontdict basefontdict maxlength dict def
201 exch dup dup /FID ne exch /Encoding ne and
202 { exch newfontdict 3 1 roll put }
206 newfontdict /FontName newfontname put
207 newfontdict /Encoding newencoding put
208 newfontname newfontdict definefont pop
215 def __init__(self
, document
, filename
):
216 if len(document
.pages
) != 1:
217 raise ValueError("EPS file can be construced out of a single page document only")
218 page
= document
.pages
[0]
221 if filename
[-4:] != ".eps":
222 filename
= filename
+ ".eps"
224 file = open(filename
, "w")
226 raise IOError("cannot open output file")
229 pagetrafo
= page
.pagetrafo(bbox
)
231 # if a page transformation is necessary, we have to adjust the bounding box
233 if pagetrafo
is not None:
234 bbox
.transform(pagetrafo
)
236 file.write("%!PS-Adobe-3.0 EPSF-3.0\n")
238 file.write("%%%%BoundingBox: %d %d %d %d\n" % bbox
.lowrestuple_pt())
239 file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % bbox
.highrestuple_pt())
240 file.write("%%%%Creator: PyX %s\n" % version
.version
)
241 file.write("%%%%Title: %s\n" % filename
)
242 file.write("%%%%CreationDate: %s\n" %
243 time
.asctime(time
.localtime(time
.time())))
244 file.write("%%EndComments\n")
246 file.write("%%BeginProlog\n")
247 registry
= PSregistry()
248 canvas
.registerPS(registry
)
249 registry
.outputPS(file, self
)
250 file.write("%%EndProlog\n")
253 # apply a possible page transformation
255 pagetrafo
.outputPS(file, self
, acontext
)
257 style
.linewidth
.normal
.outputPS(file, self
, acontext
)
259 # here comes the canvas content
260 canvas
.outputPS(file, self
, acontext
)
262 file.write("showpage\n")
263 file.write("%%Trailer\n")
264 file.write("%%EOF\n")
269 def __init__(self
, document
, filename
, insertpagebbox
=0):
270 if filename
[-4:] != ".ps":
271 filename
= filename
+ ".ps"
273 file = open(filename
, "w")
275 raise IOError("cannot open output file")
277 # calculated bounding boxes of separate pages and the bounding box of the whole document
279 for page
in document
.pages
:
281 page
._bbox
= page
.bbox()
282 page
._pagetrafo
= page
.pagetrafo(page
._bbox
)
283 # if a page transformation is necessary, we have to adjust the bounding box
286 page
._bbox
.transform(page
._pagetrafo
)
289 documentbbox
+= page
._bbox
291 documentbbox
= page
._bbox
.enlarge(0) # make a copy
293 file.write("%!PS-Adobe-3.0\n")
295 file.write("%%%%BoundingBox: %d %d %d %d\n" % documentbbox
.lowrestuple_pt())
296 file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % documentbbox
.highrestuple_pt())
297 file.write("%%%%Creator: PyX %s\n" % version
.version
)
298 file.write("%%%%Title: %s\n" % filename
)
299 file.write("%%%%CreationDate: %s\n" %
300 time
.asctime(time
.localtime(time
.time())))
302 # required paper formats
304 for page
in document
.pages
:
305 paperformats
[page
.paperformat
] = page
.paperformat
308 for paperformat
in paperformats
.values():
310 file.write("%%DocumentMedia: ")
314 file.write("%s %d %d 75 white ()\n" % (paperformat
.name
,
315 unit
.topt(paperformat
.width
),
316 unit
.topt(paperformat
.height
)))
318 # file.write(%%DocumentNeededResources: ") # register not downloaded fonts here
320 file.write("%%%%Pages: %d\n" % len(document
.pages
))
321 file.write("%%PageOrder: Ascend\n")
322 file.write("%%EndComments\n")
324 # document defaults section
325 #file.write("%%BeginDefaults\n")
326 #file.write("%%EndDefaults\n")
328 # document prolog section
329 file.write("%%BeginProlog\n")
330 registry
= PSregistry()
331 for page
in document
.pages
:
332 page
.canvas
.registerPS(registry
)
333 registry
.outputPS(file, self
)
334 file.write("%%EndProlog\n")
336 # document setup section
337 #file.write("%%BeginSetup\n")
338 #file.write("%%EndSetup\n")
341 for nr
, page
in enumerate(document
.pages
):
342 file.write("%%%%Page: %s %d\n" % (page
.pagename
is None and str(nr
+1) or page
.pagename
, nr
+1))
343 file.write("%%%%PageMedia: %s\n" % page
.paperformat
.name
)
344 file.write("%%%%PageOrientation: %s\n" % (page
.rotated
and "Landscape" or "Portrait"))
345 if insertpagebbox
and page
._bbox
:
346 file.write("%%%%PageBoundingBox: %d %d %d %d\n" % page
._bbox
.lowrestuple
)
349 file.write("%%BeginPageSetup\n")
350 file.write("/pgsave save def\n")
353 # apply a possible page transformation
354 if page
._pagetrafo
is not None:
355 page
._pagetrafo
.outputPS(file, self
, acontext
)
357 style
.linewidth
.normal
.outputPS(file, self
, acontext
)
358 file.write("%%EndPageSetup\n")
360 # here comes the actual content
361 page
.canvas
.outputPS(file, self
, acontext
)
362 file.write("pgsave restore\n")
363 file.write("showpage\n")
364 file.write("%%PageTrailer\n")
366 file.write("%%Trailer\n")
367 file.write("%%EOF\n")
372 self
.linewidth_pt
= None
373 self
.colorspace
= None
376 def __call__(self
, **kwargs
):
377 newcontext
= copy
.copy(self
)
378 for key
, value
in kwargs
.items():
379 setattr(newcontext
, key
, value
)