我正在使用 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');