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

Revision 20993, 1.1 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>Footer</title>
6<link type="text/css" rel="stylesheet" href="../fpdf.css">
7</head>
8<body>
9<h1>Footer</h1>
10<code>Footer()</code>
11<h2>Description</h2>
12This method is used to render the page footer. It is automatically called by AddPage() and
13Close() and should not be called directly by the application. The implementation in FPDF is
14empty, so you have to subclass it and override the method if you want a specific processing.
15<h2>Example</h2>
16<div class="doc-source">
17<pre><code>class PDF extends FPDF
18{
19function Footer()
20{
21    // Go to 1.5 cm from bottom
22    $this-&gt;SetY(-15);
23    // Select Arial italic 8
24    $this-&gt;SetFont('Arial','I',8);
25    // Print centered page number
26    $this-&gt;Cell(0,10,'Page '.$this-&gt;PageNo(),0,0,'C');
27}
28}</code></pre>
29</div>
30<h2>See also</h2>
31<a href="header.htm">Header()</a>.
32<hr style="margin-top:1.5em">
33<div style="text-align:center"><a href="index.htm">Index</a></div>
34</body>
35</html>
Note: See TracBrowser for help on using the repository browser.