source: branches/version-2_11-dev/data/module/fpdf/doc/addpage.htm @ 20993

Revision 20993, 1.9 KB checked in by Seasoft, 13 years ago (diff)

#1374 (依存ライブラリのアップデート)

  • FPDF 1.6 -> 1.7
  • FPDI 1.4 -> 1.4.1 (配置パスをFPDFから分離)
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
5<title>AddPage</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>AddPage</h1>
10<code>AddPage([<b>string</b> orientation [, <b>mixed</b> size]])</code>
11<h2>Description</h2>
12Adds a new page to the document. If a page is already present, the Footer() method is called
13first to output the footer. Then the page is added, the current position set to the top-left
14corner according to the left and top margins, and Header() is called to display the header.
15<br>
16The font which was set before calling is automatically restored. There is no need to call
17SetFont() again if you want to continue with the same font. The same is true for colors and
18line width.
19<br>
20The origin of the coordinate system is at the top-left corner and increasing ordinates go
21downwards.
22<h2>Parameters</h2>
23<dl class="param">
24<dt><code>orientation</code></dt>
25<dd>
26Page orientation. Possible values are (case insensitive):
27<ul>
28<li><code>P</code> or <code>Portrait</code></li>
29<li><code>L</code> or <code>Landscape</code></li>
30</ul>
31The default value is the one passed to the constructor.
32</dd>
33<dt><code>size</code></dt>
34<dd>
35Page size. It can be either one of the following values (case insensitive):
36<ul>
37<li><code>A3</code></li>
38<li><code>A4</code></li>
39<li><code>A5</code></li>
40<li><code>Letter</code></li>
41<li><code>Legal</code></li>
42</ul>
43or an array containing the width and the height (expressed in user unit).<br>
44<br>
45The default value is the one passed to the constructor.
46</dd>
47</dl>
48<h2>See also</h2>
49<a href="fpdf.htm">FPDF()</a>,
50<a href="header.htm">Header()</a>,
51<a href="footer.htm">Footer()</a>,
52<a href="setmargins.htm">SetMargins()</a>.
53<hr style="margin-top:1.5em">
54<div style="text-align:center"><a href="index.htm">Index</a></div>
55</body>
56</html>
Note: See TracBrowser for help on using the repository browser.