加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

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

发布时间:2020-12-13 17:55:32 所属栏目:PHP教程 来源:网络整理
导读:是否可以使用TCPDF将 HTML表格呈现为PDF并将其缩放以适合页面?我的表中有很多列.是否可以缩小或缩小以适应它? TCPDF允许您编写HTML.这样,您的表结构无关紧要. 例: $tbl = EODtable border="1"trth rowspan="3"Left column/thth colspan="5"Heading Column
是否可以使用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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读