1 # -*- coding: ISO-8859-1 -*-
4 # Copyright (C) 2005-2006 Jörg Lehmann <joergl@users.sourceforge.net>
5 # Copyright (C) 2005-2006 André Wobst <wobsta@users.sourceforge.net>
7 # This file is part of PyX (http://pyx.sourceforge.net/).
9 # PyX is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # PyX is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with PyX; if not, write to the Free Software
21 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 import cStringIO
, copy
, time
, math
24 import bbox
, config
, style
, version
, unit
, trafo
30 # in order to keep a consistent order of the registered resources we
31 # not only store them in a hash but also keep an ordered list (up to a
32 # possible merging of resources, in which case the first instance is
34 self
.resourceshash
= {}
35 self
.resourceslist
= []
37 def add(self
, resource
):
38 rkey
= (resource
.type, resource
.id)
39 if self
.resourceshash
.has_key(rkey
):
40 self
.resourceshash
[rkey
].merge(resource
)
42 self
.resourceshash
[rkey
] = resource
43 self
.resourceslist
.append(resource
)
45 def mergeregistry(self
, registry
):
46 for resource
in registry
.resources
:
49 def output(self
, file, writer
):
50 """ write all PostScript code of the prolog resources """
51 for resource
in self
.resourceslist
:
52 resource
.output(file, writer
, self
)
60 """ a PostScript resource """
62 def __init__(self
, type, id):
63 # Every PSresource has to have a type and a unique id.
64 # Resources with the same type and id will be merged
65 # when they are registered in the PSregistry
69 def merge(self
, other
):
70 """ merge self with other, which has to be a resource of the same type and with
74 def output(self
, file, writer
, registry
):
75 raise NotImplementedError("output not implemented for %s" % repr(self
))
77 class PSdefinition(PSresource
):
79 """ PostScript function definition included in the prolog """
81 def __init__(self
, id, body
):
82 self
.type = "definition"
86 def output(self
, file, writer
, registry
):
87 file.write("%%%%BeginResource: %s\n" % self
.id)
88 file.write("%(body)s /%(id)s exch def\n" % self
.__dict
__)
89 file.write("%%EndResource\n")
97 def __init__(self
, title
=None, strip_fonts
=1, text_as_path
=0, mesh_as_bitmap
=0, mesh_as_bitmap_resolution
=300):
100 self
.strip_fonts
= strip_fonts
101 self
.text_as_path
= text_as_path
102 self
.mesh_as_bitmap
= mesh_as_bitmap
103 self
.mesh_as_bitmap_resolution
= mesh_as_bitmap_resolution
105 # dictionary mapping font names to dictionaries mapping encoding names to encodings
106 # encodings themselves are mappings from glyphnames to codepoints
109 def writeinfo(self
, file):
110 file.write("%%%%Creator: PyX %s\n" % version
.version
)
111 if self
.title
is not None:
112 file.write("%%%%Title: %s\n" % self
.title
)
113 file.write("%%%%CreationDate: %s\n" %
114 time
.asctime(time
.localtime(time
.time())))
116 def getfontmap(self
):
117 if self
._fontmap
is None:
118 # late import due to cyclic dependency
119 from pyx
.dvi
import mapfile
120 fontmapfiles
= config
.getlist("text", "psfontmaps", ["psfonts.map"])
121 self
._fontmap
= mapfile
.readfontmap(fontmapfiles
)
125 class EPSwriter(_PSwriter
):
127 def __init__(self
, document
, file, **kwargs
):
128 _PSwriter
.__init
__(self
, **kwargs
)
130 if len(document
.pages
) != 1:
131 raise ValueError("EPS file can be constructed out of a single page document only")
132 page
= document
.pages
[0]
135 pagefile
= cStringIO
.StringIO()
136 registry
= PSregistry()
138 pagebbox
= bbox
.empty()
140 page
.processPS(pagefile
, self
, acontext
, registry
, pagebbox
)
142 file.write("%!PS-Adobe-3.0 EPSF-3.0\n")
144 file.write("%%%%BoundingBox: %d %d %d %d\n" % pagebbox
.lowrestuple_pt())
145 file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % pagebbox
.highrestuple_pt())
147 file.write("%%EndComments\n")
149 file.write("%%BeginProlog\n")
150 registry
.output(file, self
)
151 file.write("%%EndProlog\n")
153 file.write(pagefile
.getvalue())
156 file.write("showpage\n")
157 file.write("%%Trailer\n")
158 file.write("%%EOF\n")
161 class PSwriter(_PSwriter
):
163 def __init__(self
, document
, file, writebbox
=0, **kwargs
):
164 _PSwriter
.__init
__(self
, **kwargs
)
166 # We first have to process the content of the pages, writing them into the stream pagesfile
167 # Doing so, we fill the registry and also calculate the page bounding boxes, which are
168 # stored in page._bbox for every page
169 pagesfile
= cStringIO
.StringIO()
170 registry
= PSregistry()
172 # calculated bounding boxes of the whole document
173 documentbbox
= bbox
.empty()
175 for nr
, page
in enumerate(document
.pages
):
176 # process contents of page
177 pagefile
= cStringIO
.StringIO()
179 pagebbox
= bbox
.empty()
180 page
.processPS(pagefile
, self
, acontext
, registry
, pagebbox
)
182 documentbbox
+= pagebbox
184 pagesfile
.write("%%%%Page: %s %d\n" % (page
.pagename
is None and str(nr
+1) or page
.pagename
, nr
+1))
186 pagesfile
.write("%%%%PageMedia: %s\n" % page
.paperformat
.name
)
187 pagesfile
.write("%%%%PageOrientation: %s\n" % (page
.rotated
and "Landscape" or "Portrait"))
188 if pagebbox
and writebbox
:
189 pagesfile
.write("%%%%PageBoundingBox: %d %d %d %d\n" % pagebbox
.lowrestuple_pt())
192 pagesfile
.write("%%BeginPageSetup\n")
193 pagesfile
.write("/pgsave save def\n")
195 pagesfile
.write("%%EndPageSetup\n")
196 pagesfile
.write(pagefile
.getvalue())
198 pagesfile
.write("pgsave restore\n")
199 pagesfile
.write("showpage\n")
200 pagesfile
.write("%%PageTrailer\n")
202 file.write("%!PS-Adobe-3.0\n")
203 if documentbbox
and writebbox
:
204 file.write("%%%%BoundingBox: %d %d %d %d\n" % documentbbox
.lowrestuple_pt())
205 file.write("%%%%HiResBoundingBox: %g %g %g %g\n" % documentbbox
.highrestuple_pt())
208 # required paper formats
210 for page
in document
.pages
:
212 paperformats
[page
.paperformat
] = page
.paperformat
215 for paperformat
in paperformats
.values():
217 file.write("%%DocumentMedia: ")
221 file.write("%s %d %d 75 white ()\n" % (paperformat
.name
,
222 unit
.topt(paperformat
.width
),
223 unit
.topt(paperformat
.height
)))
225 # file.write(%%DocumentNeededResources: ") # register not downloaded fonts here
227 file.write("%%%%Pages: %d\n" % len(document
.pages
))
228 file.write("%%PageOrder: Ascend\n")
229 file.write("%%EndComments\n")
231 # document defaults section
232 #file.write("%%BeginDefaults\n")
233 #file.write("%%EndDefaults\n")
235 # document prolog section
236 file.write("%%BeginProlog\n")
237 registry
.output(file, self
)
238 file.write("%%EndProlog\n")
240 # document setup section
241 #file.write("%%BeginSetup\n")
242 #file.write("%%EndSetup\n")
244 file.write(pagesfile
.getvalue())
247 file.write("%%Trailer\n")
248 file.write("%%EOF\n")
254 self
.linewidth_pt
= None
255 self
.colorspace
= None
256 self
.selectedfont
= None
258 def __call__(self
, **kwargs
):
259 newcontext
= copy
.copy(self
)
260 for key
, value
in kwargs
.items():
261 setattr(newcontext
, key
, value
)