本文整理匯總了PHP中HTML2FPDF::ShowNOIMG_GIF方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTML2FPDF::ShowNOIMG_GIF方法的具體用法?PHP HTML2FPDF::ShowNOIMG_GIF怎麽用?PHP HTML2FPDF::ShowNOIMG_GIF使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類HTML2FPDF
的用法示例。
在下文中一共展示了HTML2FPDF::ShowNOIMG_GIF方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Create
function Create()
{
$this->content = utf8_decode($this->_ParseHTML($this->content));
$pdf = new HTML2FPDF();
$pdf->ShowNOIMG_GIF();
$pdf->DisplayPreferences('HideWindowUI');
$pdf->AddPage();
$pdf->WriteHTML($this->content);
$pdf->Output(\Cx\Lib\FileSystem\FileSystem::replaceCharacters($this->title));
}
示例2: gettext
echo gettext("No calls in your selection");
?>
.</h3></center>
<?php
}
?>
</center>
<?php
if ($exporttype != "pdf") {
?>
<?php
include "PP_footer.php";
?>
<?php
} else {
// EXPORT TO PDF
$html = ob_get_contents();
// delete output-Buffer
ob_end_clean();
$pdf = new HTML2FPDF();
$pdf->imgpath = "../../";
$pdf->DisplayPreferences('HideWindowUI');
$pdf->ShowNOIMG_GIF();
$pdf->AddPage();
$pdf->WriteHTML($html);
$html = ob_get_contents();
$pdf->Output('CC_invoice_' . date("d/m/Y-H:i") . '.pdf', 'I');
}