The py3k branch is the new trunk.
[PyX.git] / document.py
blob9ccd8bedd9bd51a38f3a58b81a31b4279b4082a2
1 # -*- encoding: utf-8 -*-
4 # Copyright (C) 2005-2011 Jörg Lehmann <joergl@users.sourceforge.net>
5 # Copyright (C) 2005-2011 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 sys, warnings
24 from . import bbox, pswriter, pdfwriter, writer, trafo, style, unit
27 class paperformat:
29 def __init__(self, width, height, name=None):
30 self.width = width
31 self.height = height
32 self.name = name
34 paperformat.A5 = paperformat(148.5 * unit.t_mm, 210 * unit.t_mm, "A5")
35 paperformat.A4 = paperformat(210 * unit.t_mm, 297 * unit.t_mm, "A4")
36 paperformat.A3 = paperformat(297 * unit.t_mm, 420 * unit.t_mm, "A3")
37 paperformat.A2 = paperformat(420 * unit.t_mm, 594 * unit.t_mm, "A2")
38 paperformat.A1 = paperformat(594 * unit.t_mm, 840 * unit.t_mm, "A1")
39 paperformat.A0 = paperformat(840 * unit.t_mm, 1188 * unit.t_mm, "A0")
40 paperformat.A0b = paperformat(910 * unit.t_mm, 1370 * unit.t_mm, None) # dedicated to our friends in Augsburg
41 paperformat.Letter = paperformat(8.5 * unit.t_inch, 11 * unit.t_inch, "Letter")
42 paperformat.Legal = paperformat(8.5 * unit.t_inch, 14 * unit.t_inch, "Legal")
44 def _paperformatfromstring(name):
45 return getattr(paperformat, name.capitalize())
48 class page:
50 def __init__(self, canvas, pagename=None, paperformat=None, rotated=0, centered=1, fittosize=0,
51 margin=1*unit.t_cm, bboxenlarge=1*unit.t_pt, bbox=None):
52 self.canvas = canvas
53 self.pagename = pagename
54 # support for deprecated string specification of paper formats
55 try:
56 paperformat + ""
57 except:
58 self.paperformat = paperformat
59 else:
60 self.paperformat = _paperformatfromstring(paperformat)
61 warnings.warn("specification of paperformat by string is deprecated, use document.paperformat.%s instead" % paperformat.capitalize(), DeprecationWarning)
63 self.rotated = rotated
64 self.centered = centered
65 self.fittosize = fittosize
66 self.margin = margin
67 self.bboxenlarge = bboxenlarge
68 self.pagebbox = bbox
70 def _process(self, processMethod, contentfile, writer, context, registry, bbox):
71 # usually, it is the bbox of the canvas enlarged by self.bboxenlarge, but
72 # it might be a different bbox as specified in the page constructor
73 assert not bbox
74 if self.pagebbox:
75 bbox.set(self.pagebbox)
76 else:
77 bbox.set(self.canvas.bbox()) # this bbox is not accurate
78 bbox.enlarge(self.bboxenlarge)
80 # check whether we expect a page trafo and use a temporary canvas to insert the
81 # page canvas
82 if self.paperformat and (self.rotated or self.centered or self.fittosize) and bbox:
83 # calculate the pagetrafo
84 paperwidth, paperheight = self.paperformat.width, self.paperformat.height
86 # center (optionally rotated) output on page
87 if self.rotated:
88 pagetrafo = trafo.rotate(90).translated(paperwidth, 0)
89 if self.centered or self.fittosize:
90 if not self.fittosize and (bbox.height() > paperwidth or bbox.width() > paperheight):
91 warnings.warn("content exceeds the papersize")
92 pagetrafo = pagetrafo.translated(-0.5*(paperwidth - bbox.height()) + bbox.bottom(),
93 0.5*(paperheight - bbox.width()) - bbox.left())
94 else:
95 if not self.fittosize and (bbox.width() > paperwidth or bbox.height() > paperheight):
96 warnings.warn("content exceeds the papersize")
97 pagetrafo = trafo.translate(0.5*(paperwidth - bbox.width()) - bbox.left(),
98 0.5*(paperheight - bbox.height()) - bbox.bottom())
100 if self.fittosize:
102 if 2*self.margin > paperwidth or 2*self.margin > paperheight:
103 raise ValueError("Margins too broad for selected paperformat. Aborting.")
105 paperwidth -= 2 * self.margin
106 paperheight -= 2 * self.margin
108 # scale output to pagesize - margins
109 if self.rotated:
110 sfactor = min(unit.topt(paperheight)/bbox.width_pt(), unit.topt(paperwidth)/bbox.height_pt())
111 else:
112 sfactor = min(unit.topt(paperwidth)/bbox.width_pt(), unit.topt(paperheight)/bbox.height_pt())
114 pagetrafo = pagetrafo.scaled(sfactor, sfactor, self.margin + 0.5*paperwidth, self.margin + 0.5*paperheight)
116 bbox.transform(pagetrafo)
117 from . import canvas as canvasmodule
118 cc = canvasmodule.canvas()
119 cc.insert(self.canvas, [pagetrafo])
120 else:
121 cc = self.canvas
123 getattr(style.linewidth.normal, processMethod)(contentfile, writer, context, registry)
124 if self.pagebbox:
125 bbox = bbox.copy() # don't alter the bbox provided to the constructor -> use a copy
126 getattr(cc, processMethod)(contentfile, writer, context, registry, bbox)
128 def processPS(self, *args):
129 self._process("processPS", *args)
131 def processPDF(self, *args):
132 self._process("processPDF", *args)
135 def _outputstream(file, suffix):
136 if file is None:
137 if not sys.argv[0].endswith(".py"):
138 raise RuntimeError("could not auto-guess filename")
139 return open("%s.%s" % (sys.argv[0][:-3], suffix), "wb")
140 if file == "-":
141 return sys.stdout.buffer
142 try:
143 file.write(b"")
144 return file
145 except:
146 if not file.endswith(".%s" % suffix):
147 return open("%s.%s" % (file, suffix), "wb")
148 return open(file, "wb")
151 class document:
153 """holds a collection of page instances which are output as pages of a document"""
155 def __init__(self, pages=None):
156 if pages is None:
157 self.pages = []
158 else:
159 self.pages = pages
161 def append(self, page):
162 self.pages.append(page)
164 def writeEPSfile(self, file=None, **kwargs):
165 pswriter.EPSwriter(self, _outputstream(file, "eps"), **kwargs)
167 def writePSfile(self, file=None, **kwargs):
168 pswriter.PSwriter(self, _outputstream(file, "ps"), **kwargs)
170 def writePDFfile(self, file=None, **kwargs):
171 pdfwriter.PDFwriter(self, _outputstream(file, "pdf"), **kwargs)
173 def writetofile(self, filename, **kwargs):
174 if filename.endswith(".eps"):
175 self.writeEPSfile(open(filename, "wb"), **kwargs)
176 elif filename.endswith(".ps"):
177 self.writePSfile(open(filename, "wb"), **kwargs)
178 elif filename.endswith(".pdf"):
179 self.writePDFfile(open(filename, "wb"), **kwargs)
180 else:
181 raise ValueError("unknown file extension")