PHP:从html创建400-500页的PDF

时间:2016-12-21 11:23:51

标签: php pdf tcpdf wkhtmltopdf

我使用wkhtmltopdf将html转换为包含400-500页的PDF文件。但是在表中的每4行之后得到不合需要的空格。如何克服这个问题? HTML看起来不错,但PDF有空格。

我使用以下内容来创建PDF。

  1. PHP => exec('/ usr / bin /wkhtmltopdf temp.html temp.pdf 2>& 1',$ output);
  2. HTML格式:
  3.   

    @media all {table {empty-cells:hide!important;} tr {   分页:避免; page-break-inside:avoid;空细胞:隐藏;   保证金:0像素; padding:0px;} .pgBrk {page-break-after:always   !重要; page-break-inside:avoid!important;} tr.json-array-table   {page-break-inside:avoid!important;}

    请建议。

1 个答案:

答案 0 :(得分:0)

我使用TCPDF库完成了此操作。 wkhtmltopdf执行速度快但定制次数少。在处理PDF文件的创建时,TCPDF支持自定义和许多关键功能。我们可以在php here中查看BEST库。