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
24 from . import bbox
, pswriter
, pdfwriter
, writer
, trafo
, style
, unit
29 def __init__(self
, width
, height
, name
=None):
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())
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):
53 self
.pagename
= pagename
54 # support for deprecated string specification of paper formats
58 self
.paperformat
= paperformat
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
67 self
.bboxenlarge
= bboxenlarge
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
75 bbox
.set(self
.pagebbox
)
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
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
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())
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())
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
110 sfactor
= min(unit
.topt(paperheight
)/bbox
.width_pt(), unit
.topt(paperwidth
)/bbox
.height_pt())
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
])
123 getattr(style
.linewidth
.normal
, processMethod
)(contentfile
, writer
, context
, registry
)
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
)
137 def __init__(self
, f
):
143 def __exit__(self
, type, value
, tb
):
147 def _outputstream(file, suffix
):
149 if not sys
.argv
[0].endswith(".py"):
150 raise RuntimeError("could not auto-guess filename")
151 return open("%s.%s" % (sys
.argv
[0][:-3], suffix
), "wb")
153 return _noclose(sys
.stdout
.buffer)
157 if not file.endswith(".%s" % suffix
):
158 return open("%s.%s" % (file, suffix
), "wb")
159 return open(file, "wb")
161 return _noclose(file)
166 """holds a collection of page instances which are output as pages of a document"""
168 def __init__(self
, pages
=None):
174 def append(self
, page
):
175 self
.pages
.append(page
)
177 def writeEPSfile(self
, file=None, **kwargs
):
178 with
_outputstream(file, "eps") as f
:
179 pswriter
.EPSwriter(self
, f
, **kwargs
)
181 def writePSfile(self
, file=None, **kwargs
):
182 with
_outputstream(file, "ps") as f
:
183 pswriter
.PSwriter(self
, f
, **kwargs
)
185 def writePDFfile(self
, file=None, **kwargs
):
186 with
_outputstream(file, "pdf") as f
:
187 pdfwriter
.PDFwriter(self
, f
, **kwargs
)
189 def writetofile(self
, filename
, **kwargs
):
190 for suffix
, method
in [("eps", pswriter
.writeEPSfile
),
191 ("ps", pswriter
.writePSfile
),
192 ("pdf", pdfwriter
.writePDFfile
)]:
193 if filename
.endswith(".{}".format(suffix
)):
194 with
open(filename
, "wb") as f
:
195 method(self
, f
, **kwargs
)
197 raise ValueError("unknown file extension")