php – 缩放HTML表以适应TCPDF中的PDF页面

前端之家收集整理的这篇文章主要介绍了php – 缩放HTML表以适应TCPDF中的PDF页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以使用TCPDF将 HTML表格呈现为PDF并将其缩放以适合页面?我的表中有很多列.是否可以缩小或缩小以适应它?
TCPDF允许您编写HTML.这样,您的表结构无关紧要.

例:

$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,'');

See Full Full Code | See PDF Output

原文链接:https://www.f2er.com/php/133993.html

猜你在找的PHP相关文章