TCPDF 整页 table
TCPDF full page table
我尝试了很多方法使 table 适合页面 (A4),如图所示:
我搜索了很多但在网上找不到任何有用的东西。
我正在使用动态 table,除了 table 的宽度外一切正常。
这是我的代码:
$content = '<table><thead><tr><th class="bg-dark text-white" align="center">#</th><th align="center" class="bg-dark text-white">Code</th><th align="left" class="bg-dark text-white">Description</th><th align="center" class="bg-dark text-white">Item Type</th></tr></thead><tbody><tr style="background-color: #f2f2f2;"><td align="center">1</td><td align="center">1001</td><td align="left">Pofak</td><td align="center">Fixed Price</td></tr><tr ><td align="center">2</td><td align="center">1002</td><td align="left">Ice</td><td align="center">Weight</td></tr><tr style="background-color: #f2f2f2;"><td align="center">3</td><td align="center">1003</td><td align="left">Minoo</td><td align="center">Fixed Price</td></tr><tr ><td align="center">4</td><td align="center">1004</td><td align="left">Bastani</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">5</td><td align="center">1005</td><td align="left">Chocolate</td><td align="center">Weight</td></tr><tr ><td align="center">6</td><td align="center">1006</td><td align="left">Brush</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">7</td><td align="center">1007</td><td align="left">Apple</td><td align="center">Weight</td></tr><tr ><td align="center">8</td><td align="center">1008</td><td align="left">Water</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">9</td><td align="center">1009</td><td align="left">Cleaner</td><td align="center">Fixed Price</td></tr><tr ><td align="center">10</td><td align="center">1001</td><td align="left">Pofak</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">11</td><td align="center">1002</td><td align="left">Ice</td><td align="center">Weight</td></tr><tr ><td align="center">12</td><td align="center">1003</td><td align="left">Minoo</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">13</td><td align="center">1004</td><td align="left">Bastani</td><td align="center">Fixed Price</td></tr><tr ><td align="center">14</td><td align="center">1005</td><td align="left">Chocolate</td><td align="center">Weight</td></tr><tr style="background-color: #f2f2f2;"><td align="center">15</td><td align="center">1006</td><td align="left">Brush</td><td align="center">Fixed Price</td></tr></tbody></table>';
$newContent = '
<style type="text/css">
table{width:100%;}
table, table td, table th{
border-collapse: collapse;
border: solid 1px #ababab;
}
.text-dark, table td{
color: #343a40;
}
.text-white{
color: #ffffff;
}
table td,
table th {
font-size: 11px;
padding: 3px;
line-height: 1.2;
font-family:arial;
}
.bg-dark {
background-color: #343a40;
}
.bg-secondary {
background-color: #6c757d;
}
.bg-white {
background-color: #ffffff;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
</style>
';
$newContent .= '<page>'.$content.'</page>';
try {
$html2pdf = new Html2Pdf('P', 'A4', 'en', true, 'UTF-8', 5);
$html2pdf->pdf->SetDisplayMode('real');
$html2pdf->writeHTML($newContent);
$PDFName = "ItemLists_".date('Y.m.d_H.i.s').".pdf";
$html2pdf->output($PDFName, 'I');
} catch (Html2PdfException $x) {
$html2pdf->clean();
$formatter = new ExceptionFormatter($x);
echo $formatter->getHtmlMessage();
}
非常感谢
使用 PDF 的服务器端并不适合 CSS。您试过只使用 HTML 吗?
例如:
<table width="100%">
<!-- your table code -->
</table>
或者您可以尝试:
<table style="width: 100%;">
<!-- your table code -->
</table>
这里有一个 CodePen,它演示了如何在浏览器中工作。 https://codepen.io/tinacious/pen/PowJRbb
Html2PDF 不使用 TCPDF 的 HTML parser/render 系统。它实现了它自己的,它的实现不会自动增加列来填充 100% 的 space。
因此,在 Html2PDF 中,您不仅需要在 table 上设置 100% 宽度,还需要为每个单元格设置百分比宽度。 (由于 Html2PDF 中 width
属性的某些奇怪行为,请使用 CSS 设置宽度。)
TCPDF 的原生 writeHTML
将每列设置为相同的宽度,否则没有任何规范。 (例如,一个 4 列 table 的所有单元格都占 25%)但是,它不支持您正在使用的 CSS,因此需要对标记进行一些调整才能走这条路。
要在 Html2PDF 中模仿这种基本行为,您只需显式地向单元格添加等效宽度即可。例如,向 table td, table th
样式规则添加宽度规范。
下面是一个包含以下 CSS 规则的四列 table 示例:
table { width: 100%; }
table th, table td { width: 25%; }
当然,当您指定适合您的内容的宽度时它看起来最好。
更新
我将在下面留下一些关于 TCPDF 的讨论,因为它会在某种程度上导致为 Html2pdf
创建一个可能有用的 class。 TCPDF 有一些有用的方法来测量字符串的长度。如果您测量列内字符串的大小,您可以创建自己的自动列大小调整器。
我在 https://github.com/b65sol/random-classes
github 上创建了一个概念验证 class
首先,我们使用class来调解HTML的构造。这样就添加了用于设置宽度的 classes 列,我们不必解析 HTML 来提取我们正在测量的内容。
然后我们必须选择一些策略来选择我们的列宽。例如,下面的演示测量列并根据最长单词找到每个列的最小宽度百分比。 (避免分词)然后根据最长单词和最长完整单元格内容之间的差异按比例分配任何额外的 space。我不会称此产品已准备就绪,因为它是一个概念验证,但我希望您(或其他搜索者)发现它是一个有用的起点。
下面的关键部分是:$tablebuilder->determine_column_widths_by_minimum_strategy('100%', 'aaa')
第一个参数为我们提供了我们正在使用的尺寸参考(100% 的页面,因为我需要这个来使测量有用),第二个参数提供了一些预设的填充字符以添加到我们的测量值中文本样式和 table 填充差异。
这是它的演示 运行:
https://b65sol.com/so/59517311_new.php
class 本身可在此处获得:
https://github.com/b65sol/random-classes
该演示的代码在这里:
<?php
require 'vendor/autoload.php';
include 'random-classes/html2pdf-full-table-optimizer.php';
use Spipu\Html2Pdf\Html2Pdf;
//First let's build a random table!
$wordlist = ['Chocolate', 'Cake', 'Brownies', 'Cupcakes', 'Coreshock', 'Battery', 'Lead', 'Acid', 'Remilia'];
$wordlist2 = ['Reinforcement Learning', 'Initial Latent Vectors', 'Bag-of-Words', 'Multilayer Perceptron Classifier',
'Deconvolutional Neural Network', 'Convolutional Neural Network'];
$number_of_columns = rand(3,11);
$number_of_rows = rand(8, 15);
$possible_column_names = ['Unit', 'Description', 'Variable', 'Moon', 'Cheese', 'Lollipop', 'Orange', 'Gir', 'Gaz', 'Zim', 'Dib'];
$possible_column_content_generators = [
function() {return rand(10,100); },
function() {return rand(1000, 1999); },
function() use ($wordlist) {return $wordlist[rand(0, count($wordlist)-1)]; },
function() use ($wordlist) {return $wordlist[rand(0, count($wordlist)-1)] . ' '. $wordlist[rand(0, count($wordlist)-1)];},
function() use ($wordlist2) {return $wordlist2[rand(0, count($wordlist2)-1)];},
];
shuffle($possible_column_names);
$list_of_generators = [];
$column_classes = [];
$column_names = [];
for($i = 0; $i < $number_of_columns; $i++) {
$list_of_generators[$i] = $possible_column_content_generators[rand(0, count($possible_column_content_generators)-1)];
$column_classes[$i] = ['text-left', 'text-right', 'text-center'][rand(0,2)];
$column_names[$i] = $possible_column_names[$i];
}
//Got our random stuff, onward to generator!
try {
$html2pdf = new Html2Pdf('P', 'A4', 'en', true, 'UTF-8', 5);
$html2pdf->pdf->SetDisplayMode('real');
$tablebuilder = new Html2PdfTableOptimizer($html2pdf->pdf, '11px', 'helvetica');
//run table builder... using random data for testing.
for($i = 0; $i < $number_of_columns; $i++) {
/*Add a header cell, content is the first parameter, CSS class attribute is second.*/
$tablebuilder->add_header_cell($column_names[$i], $column_classes[$i] . ' bg-dark text-white');
}
for($i = 0; $i < $number_of_rows; $i++) {
//Start a row.
$tablebuilder->start_data_row();
for($col = 0; $col < $number_of_columns; $col++) {
//Add content and our column classes for td elements
$tablebuilder->add_data_row_cell($list_of_generators[$col](), $column_classes[$col]);
}
//End the row.
$tablebuilder->end_data_row();
}
//Get the table HTML.
$render = $tablebuilder->render_html();
$newContent = '
<style type="text/css">
table{width:100%;}
table, table td, table th{
border-collapse: collapse;
border: solid 1px #ababab;
}
.text-dark, table td{
color: #343a40;
}
.text-white{
color: #ffffff;
}
table td,
table th {
font-size: 11px;
padding: 3px;
line-height: 1.2;
font-family:arial;
}
.bg-dark {
background-color: #343a40;
}
.bg-secondary {
background-color: #6c757d;
}
.bg-white {
background-color: #ffffff;
}
.row-even {
background-color: #d1d1d1;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
'.$tablebuilder->determine_column_widths_by_minimum_strategy('100%', 'aaa').'
</style>
';
$newContent .= '<page>'.$render.'</page>';
if(!empty($_GET['html'])) {
echo $newContent;
} else {
$html2pdf->writeHTML($newContent);
$PDFName = "ItemLists_".date('Y.m.d_H.i.s').".pdf";
$html2pdf->output($PDFName, 'I');
}
} catch (Html2PdfException $x) {
$html2pdf->clean();
$formatter = new ExceptionFormatter($x);
echo $formatter->getHtmlMessage();
}
更新结束
如果您不希望明确指定宽度,您可以使用 TCPDF 的 writeHTML
而不是 Html2PDF
库,但所要做的就是使用相同大小的列。我实际上认为如果您只指定一两个列大小,它会重新计算一些列大小,但我错了。此外,TCPDF 受到一些与 Html2PDF
相同的限制 - 如果您指定一列的大小,它不会自动调整其他列的大小以适应。
它也不会像浏览器那样根据内容调整列的大小。这实际上很难做好,所以 TCPDF 没有尝试我并不感到惊讶。一个可能省力的解决方案是用大小 'proportion' 标记您的列,并根据选择的每个按比例大小的列的数量动态计算每个列的宽度。 (例如,数字列为 'small',描述列为 'large',因此它会以 10% 的比例拆分出两个小的,在 80% 处拆分出一个描述。两个小的 5% 和大的每列 45%。需要进行一些实验。)
图片:
我认为这种 table 的最佳方式是使用这种方式:
table th, table td { width:<?=floor(100 / count($cols))?>%;}
在 TCPDF 上他们没有做任何特别的事情,table 无论如何都不适合页面。
我尝试了很多方法使 table 适合页面 (A4),如图所示:
$content = '<table><thead><tr><th class="bg-dark text-white" align="center">#</th><th align="center" class="bg-dark text-white">Code</th><th align="left" class="bg-dark text-white">Description</th><th align="center" class="bg-dark text-white">Item Type</th></tr></thead><tbody><tr style="background-color: #f2f2f2;"><td align="center">1</td><td align="center">1001</td><td align="left">Pofak</td><td align="center">Fixed Price</td></tr><tr ><td align="center">2</td><td align="center">1002</td><td align="left">Ice</td><td align="center">Weight</td></tr><tr style="background-color: #f2f2f2;"><td align="center">3</td><td align="center">1003</td><td align="left">Minoo</td><td align="center">Fixed Price</td></tr><tr ><td align="center">4</td><td align="center">1004</td><td align="left">Bastani</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">5</td><td align="center">1005</td><td align="left">Chocolate</td><td align="center">Weight</td></tr><tr ><td align="center">6</td><td align="center">1006</td><td align="left">Brush</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">7</td><td align="center">1007</td><td align="left">Apple</td><td align="center">Weight</td></tr><tr ><td align="center">8</td><td align="center">1008</td><td align="left">Water</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">9</td><td align="center">1009</td><td align="left">Cleaner</td><td align="center">Fixed Price</td></tr><tr ><td align="center">10</td><td align="center">1001</td><td align="left">Pofak</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">11</td><td align="center">1002</td><td align="left">Ice</td><td align="center">Weight</td></tr><tr ><td align="center">12</td><td align="center">1003</td><td align="left">Minoo</td><td align="center">Fixed Price</td></tr><tr style="background-color: #f2f2f2;"><td align="center">13</td><td align="center">1004</td><td align="left">Bastani</td><td align="center">Fixed Price</td></tr><tr ><td align="center">14</td><td align="center">1005</td><td align="left">Chocolate</td><td align="center">Weight</td></tr><tr style="background-color: #f2f2f2;"><td align="center">15</td><td align="center">1006</td><td align="left">Brush</td><td align="center">Fixed Price</td></tr></tbody></table>';
$newContent = '
<style type="text/css">
table{width:100%;}
table, table td, table th{
border-collapse: collapse;
border: solid 1px #ababab;
}
.text-dark, table td{
color: #343a40;
}
.text-white{
color: #ffffff;
}
table td,
table th {
font-size: 11px;
padding: 3px;
line-height: 1.2;
font-family:arial;
}
.bg-dark {
background-color: #343a40;
}
.bg-secondary {
background-color: #6c757d;
}
.bg-white {
background-color: #ffffff;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
</style>
';
$newContent .= '<page>'.$content.'</page>';
try {
$html2pdf = new Html2Pdf('P', 'A4', 'en', true, 'UTF-8', 5);
$html2pdf->pdf->SetDisplayMode('real');
$html2pdf->writeHTML($newContent);
$PDFName = "ItemLists_".date('Y.m.d_H.i.s').".pdf";
$html2pdf->output($PDFName, 'I');
} catch (Html2PdfException $x) {
$html2pdf->clean();
$formatter = new ExceptionFormatter($x);
echo $formatter->getHtmlMessage();
}
非常感谢
使用 PDF 的服务器端并不适合 CSS。您试过只使用 HTML 吗?
例如:
<table width="100%">
<!-- your table code -->
</table>
或者您可以尝试:
<table style="width: 100%;">
<!-- your table code -->
</table>
这里有一个 CodePen,它演示了如何在浏览器中工作。 https://codepen.io/tinacious/pen/PowJRbb
Html2PDF 不使用 TCPDF 的 HTML parser/render 系统。它实现了它自己的,它的实现不会自动增加列来填充 100% 的 space。
因此,在 Html2PDF 中,您不仅需要在 table 上设置 100% 宽度,还需要为每个单元格设置百分比宽度。 (由于 Html2PDF 中 width
属性的某些奇怪行为,请使用 CSS 设置宽度。)
TCPDF 的原生 writeHTML
将每列设置为相同的宽度,否则没有任何规范。 (例如,一个 4 列 table 的所有单元格都占 25%)但是,它不支持您正在使用的 CSS,因此需要对标记进行一些调整才能走这条路。
要在 Html2PDF 中模仿这种基本行为,您只需显式地向单元格添加等效宽度即可。例如,向 table td, table th
样式规则添加宽度规范。
下面是一个包含以下 CSS 规则的四列 table 示例:
table { width: 100%; }
table th, table td { width: 25%; }
当然,当您指定适合您的内容的宽度时它看起来最好。
更新
我将在下面留下一些关于 TCPDF 的讨论,因为它会在某种程度上导致为 Html2pdf
创建一个可能有用的 class。 TCPDF 有一些有用的方法来测量字符串的长度。如果您测量列内字符串的大小,您可以创建自己的自动列大小调整器。
我在 https://github.com/b65sol/random-classes
github 上创建了一个概念验证 class首先,我们使用class来调解HTML的构造。这样就添加了用于设置宽度的 classes 列,我们不必解析 HTML 来提取我们正在测量的内容。
然后我们必须选择一些策略来选择我们的列宽。例如,下面的演示测量列并根据最长单词找到每个列的最小宽度百分比。 (避免分词)然后根据最长单词和最长完整单元格内容之间的差异按比例分配任何额外的 space。我不会称此产品已准备就绪,因为它是一个概念验证,但我希望您(或其他搜索者)发现它是一个有用的起点。
下面的关键部分是:$tablebuilder->determine_column_widths_by_minimum_strategy('100%', 'aaa')
第一个参数为我们提供了我们正在使用的尺寸参考(100% 的页面,因为我需要这个来使测量有用),第二个参数提供了一些预设的填充字符以添加到我们的测量值中文本样式和 table 填充差异。
这是它的演示 运行: https://b65sol.com/so/59517311_new.php
class 本身可在此处获得: https://github.com/b65sol/random-classes
该演示的代码在这里:
<?php
require 'vendor/autoload.php';
include 'random-classes/html2pdf-full-table-optimizer.php';
use Spipu\Html2Pdf\Html2Pdf;
//First let's build a random table!
$wordlist = ['Chocolate', 'Cake', 'Brownies', 'Cupcakes', 'Coreshock', 'Battery', 'Lead', 'Acid', 'Remilia'];
$wordlist2 = ['Reinforcement Learning', 'Initial Latent Vectors', 'Bag-of-Words', 'Multilayer Perceptron Classifier',
'Deconvolutional Neural Network', 'Convolutional Neural Network'];
$number_of_columns = rand(3,11);
$number_of_rows = rand(8, 15);
$possible_column_names = ['Unit', 'Description', 'Variable', 'Moon', 'Cheese', 'Lollipop', 'Orange', 'Gir', 'Gaz', 'Zim', 'Dib'];
$possible_column_content_generators = [
function() {return rand(10,100); },
function() {return rand(1000, 1999); },
function() use ($wordlist) {return $wordlist[rand(0, count($wordlist)-1)]; },
function() use ($wordlist) {return $wordlist[rand(0, count($wordlist)-1)] . ' '. $wordlist[rand(0, count($wordlist)-1)];},
function() use ($wordlist2) {return $wordlist2[rand(0, count($wordlist2)-1)];},
];
shuffle($possible_column_names);
$list_of_generators = [];
$column_classes = [];
$column_names = [];
for($i = 0; $i < $number_of_columns; $i++) {
$list_of_generators[$i] = $possible_column_content_generators[rand(0, count($possible_column_content_generators)-1)];
$column_classes[$i] = ['text-left', 'text-right', 'text-center'][rand(0,2)];
$column_names[$i] = $possible_column_names[$i];
}
//Got our random stuff, onward to generator!
try {
$html2pdf = new Html2Pdf('P', 'A4', 'en', true, 'UTF-8', 5);
$html2pdf->pdf->SetDisplayMode('real');
$tablebuilder = new Html2PdfTableOptimizer($html2pdf->pdf, '11px', 'helvetica');
//run table builder... using random data for testing.
for($i = 0; $i < $number_of_columns; $i++) {
/*Add a header cell, content is the first parameter, CSS class attribute is second.*/
$tablebuilder->add_header_cell($column_names[$i], $column_classes[$i] . ' bg-dark text-white');
}
for($i = 0; $i < $number_of_rows; $i++) {
//Start a row.
$tablebuilder->start_data_row();
for($col = 0; $col < $number_of_columns; $col++) {
//Add content and our column classes for td elements
$tablebuilder->add_data_row_cell($list_of_generators[$col](), $column_classes[$col]);
}
//End the row.
$tablebuilder->end_data_row();
}
//Get the table HTML.
$render = $tablebuilder->render_html();
$newContent = '
<style type="text/css">
table{width:100%;}
table, table td, table th{
border-collapse: collapse;
border: solid 1px #ababab;
}
.text-dark, table td{
color: #343a40;
}
.text-white{
color: #ffffff;
}
table td,
table th {
font-size: 11px;
padding: 3px;
line-height: 1.2;
font-family:arial;
}
.bg-dark {
background-color: #343a40;
}
.bg-secondary {
background-color: #6c757d;
}
.bg-white {
background-color: #ffffff;
}
.row-even {
background-color: #d1d1d1;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
'.$tablebuilder->determine_column_widths_by_minimum_strategy('100%', 'aaa').'
</style>
';
$newContent .= '<page>'.$render.'</page>';
if(!empty($_GET['html'])) {
echo $newContent;
} else {
$html2pdf->writeHTML($newContent);
$PDFName = "ItemLists_".date('Y.m.d_H.i.s').".pdf";
$html2pdf->output($PDFName, 'I');
}
} catch (Html2PdfException $x) {
$html2pdf->clean();
$formatter = new ExceptionFormatter($x);
echo $formatter->getHtmlMessage();
}
更新结束
如果您不希望明确指定宽度,您可以使用 TCPDF 的 writeHTML
而不是 Html2PDF
库,但所要做的就是使用相同大小的列。我实际上认为如果您只指定一两个列大小,它会重新计算一些列大小,但我错了。此外,TCPDF 受到一些与 Html2PDF
相同的限制 - 如果您指定一列的大小,它不会自动调整其他列的大小以适应。
它也不会像浏览器那样根据内容调整列的大小。这实际上很难做好,所以 TCPDF 没有尝试我并不感到惊讶。一个可能省力的解决方案是用大小 'proportion' 标记您的列,并根据选择的每个按比例大小的列的数量动态计算每个列的宽度。 (例如,数字列为 'small',描述列为 'large',因此它会以 10% 的比例拆分出两个小的,在 80% 处拆分出一个描述。两个小的 5% 和大的每列 45%。需要进行一些实验。)
图片:
我认为这种 table 的最佳方式是使用这种方式:
table th, table td { width:<?=floor(100 / count($cols))?>%;}
在 TCPDF 上他们没有做任何特别的事情,table 无论如何都不适合页面。