header.htm 1.08 KB
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Header</title>
<link type="text/css" rel="stylesheet" href="../fpdf.css">
</head>
<body>
<h1>Header</h1>
<code>Header()</code>
<h2>Descripción</h2>
Este método es usado para generar la cabecera de página. Es automáticamente invocada por AddPage() y no deberia ser invocada directamente en la aplicación. La implementación en FPDF es vacia, asi que si desea un procesamiento especifico debe generar una subclase y sobreescribir el método.
<h2>Ejemplo</h2>
<div class="doc-source">
<pre><code>class PDF extends FPDF
{
function Header()
{
    // Select Arial bold 15
    $this-&gt;SetFont('Arial','B',15);
    // Move to the right
    $this-&gt;Cell(80);
    // Framed title
    $this-&gt;Cell(30,10,'Title',1,0,'C');
    // Line break
    $this-&gt;Ln(20);
}
}</code></pre>
</div>
<h2>Vea además</h2>
<a href="footer.htm">Footer</a>
<hr style="margin-top:1.5em">
<div style="text-align:center"><a href="index.htm">Inicio</a></div>
</body>
</html>