我现在一直在开发codeigniter3.0网站。
我使用mpdf库。
我将从html视图生成pdf。
但我有一个问题。
html视图包括Image。
从此页面生成pdf时,此操作在本地服务器上运行良好。
但在托管服务器上,出现以下错误..
$this->load->library('m_pdf');
$pdfObj = $this->m_pdf->pdf;
$htmlBody = $this->load->view('****/****.html', $reportData, true);
$htmlBody = mb_convert_encoding($htmlBody, 'UTF-8', 'UTF-8');
//echo $htmlBody;
$pdfObj->WriteHTML($htmlBody);
// Store In Server.
$pdfObj->Output($filePath, "F");
本地的服务器和托管服务器是Windows服务器,并在Xampp上以相同版本运行。 我使用下面的代码生成pdf
<div class="header">
<table width="100%">
<tr>
<td><img src='http://xxxx.com/image.png' class='clsImgCompanyLogo'></td>
<td class="clsTDHeaderAddress">
</td>
<td class="clsTDHeaderContact">
</td>
</tr>
</table>
</div>
Html视图位于
之下&.type-2 {
figure {
flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;
}
.landscape {
flex-basis: auto;
flex-grow: 2;
flex-shrink: 1;
}
}
...... 请帮帮我