1

我正在使用 tcpdf.php 创建一个 pdf。这是我的简单 html,当我打印 html 时,没关系,但是当我写 pdf 时它什么也没显示。

require_once('../config/lang/eng.php');
require_once('../tcpdf.php');
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
$html='
<div  style="background:#2185E7;color:#fff;padding:5px;overflow:hidden;width:786px;">
  <h3 style="margin-bottom: 0;  margin-top: 0;padding-left: 17px;text-align: left;  white-space: nowrap;float:left;">My Company name: 2533</h3>
  <p  style="margin: 0;  padding-right: 14px;text-align: right; white-space: nowrap;float:right;">321 32111 4</p>
</div>

<div  style="background:#2185E7;color:#fff;padding:5px;overflow:hidden;width:786px; margin:10px 0 0 0;">
  <p style="margin: 0;">Elegant 3 B/R + Maids in , Dubai </p>
</div>
';
$pdf->writeHTML($html, true, false, true, false, '');
$pdf->Output('example_006.pdf', 'I');
4

1 回答 1

0

您需要color:#fff在第一个 div 中删除 css attr。我不知道为什么,但是取出时就可以了。

P/S:TCPD 不理解属性边距和填充。我的解决方案是始终使用 html 标签表来布局所有通用 PDF。你应该试试看。

于 2013-06-03T07:35:14.317 回答