Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is It Possible to Render HTML Table into PDF using TCPDF being scaled into the page? . cause I have many. so many columns in my table .. like some kind a zoom out scale ... Is It Possible, maybe .. but I don't know how ..

enter image description here

share|improve this question

1 Answer

TCPDF allows you to write HTML this way your table structure does not matter .. example

$tbl = <<<EOD
<table border="1">
<tr>
<th rowspan="3">Left column</th>
<th colspan="5">Heading Column Span 5</th>
<th colspan="9">Heading Column Span 9</th>
</tr>
<tr>
<th rowspan="2">Rowspan 2<br />This is some text that fills the table cell.</th>
<th colspan="2">span 2</th>
<th colspan="2">span 2</th>
<th rowspan="2">2 rows</th>
<th colspan="8">Colspan 8</th>
</tr>
<tr>
<th>1a</th>
<th>2a</th>
<th>1b</th>
<th>2b</th>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
<th>6</th>
<th>7</th>
<th>8</th>
</tr>
</table>
EOD;

$pdf->writeHTML($tbl, true, false, false, false, '');

See Full Full Code | See PDF Output

share|improve this answer
i mean .. table just overflows way to its right .. it there such a way to make it fit in the page ? like some kind a auto-fit into the page.. – Raioneru Dec 22 '12 at 3:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.