1

如何正确使用 dompdf 将 html 文件转换为 pdf。我正在做这样的事情:

<?php
require_once("lib/dompdf/dompdf_config.inc.php");

$file = "checkout.html"; 

$dompdf = new DOMPDF();
$dompdf->load_html_file($file);
$dompdf->render();
$dompdf->stream("sample.pdf");

?>

但我得到这个错误:

Fatal error: Call to undefined method Inline_Frame_Decorator::normalise() in C:\wamp\www\pos\php\lib\dompdf\include\table_frame_decorator.cls.php on line 252

我该如何解决这个问题,请赐教。谢谢。

更新 这里是 checkout.html 的内容

<table border="0">
    <th colspan="10">Product</th>
    <th>Quantity</th>
    <th>Price</th>
    <!--<th>Discount</th><!-- commented out jan 21--> 
    <th>Subtotal</th>





        <!-- fetch values from reports and prod_table using the qtysoldfetcher query-->




<tr>
<td  colspan="10">Boysen</td>
<td>4</td>
<td>900</td>
<!-- <td></td>  --><!-- commented out jan 21--> 
<td>3600</td>
</tr>








<h3 id="wyt">Sales Transaction Summary</h3><a href="pdfqtysold.php"><img id="tablez" src="../img/system/icons/Oficina-PDF-icon.png"></img></a>

<tr>
<td>Total Bill: </td>
<td colspan="8">3600</td>

<!--added jan 19 -->

</tr>

<tr>

<td>Amount paid: </td>
<td colspan="8">900</td>
</tr>



<tr>
<td>Change: </td>
<td colspan="8"></td>
</tr>

<tr>
<td>Credit: </td>
<td colspan="8">2700</td>
</tr>

<tr>
<td>Date: </td>
<td  colspan="8">2011-01-28 11:13:52</td>
</tr>

<tr>
<td>Bought by: </td>
<td  colspan="8">Asakura, Yoh</td>
</tr>
<!--end-->

 </table>
4

1 回答 1

4

checkout.html有效吗?是否有任何表格和未封闭的标签?

Google Groups 上有一个答案:

  1. 检查表格中是否有任何未闭合的标签;当您的 HTML 格式不正确时,DOMPDF 可能会遇到问题

  2. 检查 CSS 中未明确列出表格结构的元素上的表格相关显示类型

更新 :

您的 checkout.html 文件无效。有一个问题 :

<!--<th>Discount</th><!-- commented out jan 21--> 

第 5 行第 31 列:无效的注释声明:发现名称开始字符在注释外部但在注释声明内部

你的评论区没有关闭。您可以使用此行:

<!--<th>Discount</th>--><!-- commented out jan 21--> 
于 2011-01-28T15:45:32.013 回答