Ver Mensaje Individual
  #13 (permalink)  
Antiguo 14/03/2012, 21:37
zerart245
 
Fecha de Ingreso: enero-2012
Ubicación: Lima
Mensajes: 19
Antigüedad: 12 años, 3 meses
Puntos: 1
Respuesta: Centrar tabla en XHTML

Te agradesco mucho que tomes tu tiempo para ayudar. Intente con lo que tu ponias pero no mostraba nada en el PDF.

Aqui esta el codigo que sale a medias, no centra en vertical si horizontal.
El codigo esta feo porque estuve probando con muchas cosas, disculpen el desorden.

Código PHP:
<?php
//============================================================+
// File name   : example_061.php
// Begin       : 2010-05-24
// Last Update : 2010-08-08
//
// Description : Example 061 for TCPDF class
//               XHTML + CSS
//
// Author: Nicola Asuni
//
// (c) Copyright:
//               Nicola Asuni
//               Tecnick.com LTD
//               Manor Coach House, Church Hill
//               Aldershot, Hants, GU12 4RQ
//               UK
//               www.tecnick.com
//               [email protected]
//============================================================+

/**
 * Creates an example PDF TEST document using TCPDF
 * @package com.tecnick.tcpdf
 * @abstract TCPDF - Example: XHTML + CSS
 * @author Nicola Asuni
 * @since 2010-05-25
 */

require_once('../config/lang/eng.php');
require_once(
'../tcpdf.php');

// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATIONPDF_UNITPDF_PAGE_FORMATtrue'UTF-8'false);

// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Nicola Asuni');
$pdf->SetTitle('TCPDF Example 061');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');

// set default header data
//$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.' 061', PDF_HEADER_STRING);

// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN''PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA''PDF_FONT_SIZE_DATA));

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

//set margins
$pdf->SetMargins(PDF_MARGIN_LEFTPDF_MARGIN_TOPPDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);

//set auto page breaks
$pdf->SetAutoPageBreak(TRUEPDF_MARGIN_BOTTOM);

//set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

//set some language-dependent strings
$pdf->setLanguageArray($l);

// ---------------------------------------------------------

// set font
$pdf->SetFont('helvetica'''10);

// add a page
$pdf->AddPage();

/* NOTE:
 * *********************************************************
 * You can load external XHTML using :
 *
 * $html = file_get_contents('/path/to/your/file.html');
 *
 * External CSS files will be automatically loaded.
 * Sometimes you need to fix the path of the external CSS.
 * *********************************************************
 */

// define some HTML content with style
$html = <<<EOF
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">                
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>titulo</title> 
        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <style type="text/css">
            html,body{
                height: 100%;
                width: auto;
            }
        </style>
    </head>
    <body>
        <table  align="right" cellpadding="0" cellspacing="0" border="0" style="text-align:left; width:640px;">
            <tr>
                <td width="40">
                </td>
                <td>
                    <table border="1" cellspacing="0" bordercolor="#000000">
                        <tr>
                            <td align="center"  style="padding:0px;" width="115">
                                <div style="text-align: center; line-height: 0px;">&nbsp;                            
                                    <img border="0" align="center"  width="113"  height="151" src="../images/hola.JPG" />            
                                </div>                
                            </td>
                            <td align="center" valign="center" style="padding:4px;" width="485">
                                <table id="tabla" cellpadding="3.11"padding="3" cellspacing="0" border="0" style="text-align:left; width:500px;">
                                    <tr>
                                        <td style="padding:4px;" width="135">Apellidos y nombres </td>
                                        <td style="padding:4px;" width="342"><strong>afsadfsadf</strong></td>
                                    </tr>
                                    <tr>
                                        <td  style="padding:4px;" width="135">43fff</td>
                                        <td style="padding:4px;" width="342"><strong>34443434</strong></td>
                                    </tr>
                                    <tr>
                                        <td  style="padding:4px;" width="135">Fecha de nacimiento </td>
                                        <td style="padding:4px;" width="342"><strong>14/141</strong></td>
                                    </tr>
                                    <tr>
                                        <td  style="padding:4px;" width="135">Estado civil </td>
                                        <td style="padding:4px;" width="342"><strong>dfsadfasdf</strong></td>
                                    </tr>
                                    <tr>
                                        <td style="padding:4px;" width="135">Sexo</td>
                                        <td   style="padding:4px;" width="342"><strong>asdfsadfsdaf</strong></td>
                                    </tr>
                                    <tr>
                                        <td  style="padding:4px;" width="135">Tel&eacute;fonos</td>
                                        <td style="padding:4px;" width="342"><strong>43443434443</strong></td>
                                    </tr>
                                    <tr>
                                        <td  style="padding:4px;" width="135">Correos electr&oacute;nicos </td>
                                        <td   style="padding:4px;" width="342"><strong>asdfsadfasdf</strong></td>
                                    </tr>
                                </table>
                            </td>
                        </tr>    
                      </table>
                </td>            
            </tr>
        </table>
    </body>
</html>
EOF;

// output the HTML content
$pdf->writeHTML($htmltruefalsetruefalse'');

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// *******************************************************************
// HTML TIPS & TRICKS
// *******************************************************************

// REMOVE CELL PADDING
//
// $pdf->SetCellPadding(0);
// 
// This is used to remove any additional vertical space inside a 
// single cell of text.

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// REMOVE TAG TOP AND BOTTOM MARGINS
//
// $tagvs = array('p' => array(0 => array('h' => 0, 'n' => 0), 1 => array('h' => 0, 'n' => 0)));
// $pdf->setHtmlVSpace($tagvs);
// 
// Since the CSS margin command is not yet implemented on TCPDF, you
// need to set the spacing of block tags using the following method.

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// SET LINE HEIGHT
//
// $pdf->setCellHeightRatio(1.25);
// 
// You can use the following method to fine tune the line height
// (the number is a percentage relative to font height).

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// CHANGE THE PIXEL CONVERSION RATIO
//
// $pdf->setImageScale(0.47);
// 
// This is used to adjust the conversion ratio between pixels and 
// document units. Increase the value to get smaller objects.
// Since you are using pixel unit, this method is important to set the
// right zoom factor.
// 
// Suppose that you want to print a web page larger 1024 pixels to 
// fill all the available page width.
// An A4 page is larger 210mm equivalent to 8.268 inches, if you 
// subtract 13mm (0.512") of margins for each side, the remaining 
// space is 184mm (7.244 inches).
// The default resolution for a PDF document is 300 DPI (dots per 
// inch), so you have 7.244 * 300 = 2173.2 dots (this is the maximum 
// number of points you can print at 300 DPI for the given width).
// The conversion ratio is approximatively 1024 / 2173.2 = 0.47 px/dots
// If the web page is larger 1280 pixels, on the same A4 page the 
// conversion ratio to use is 1280 / 2173.2 = 0.59 pixels/dots

// *******************************************************************

// reset pointer to the last page
$pdf->lastPage();

// ---------------------------------------------------------

//Close and output PDF document
$pdf->Output('example_061.pdf''I');

//============================================================+
// END OF FILE                                                
//============================================================+