-2
我使用TCPDF。我需要整頁傳輸。TCPDF生成器完整的HTML css頁面
https://ctrlv.cz/shots/2016/11/16/bP51.png
我的輸出現在看起來是這樣。我現在不知道哪裏是問題。他們需要使網站看起來究竟是如何的HTML頁面(見屏幕1) https://ctrlv.cz/o0dx
我不沒有哪裏是問題:-(
data_request('htmlData'); //načti posledne hodnoty
$style = file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/css/styles.css');
require_once 'TCPDF/tcpdf.php';
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor('Nicola Asuni');
$pdf->SetTitle('TCPDF Example 061');
$pdf->SetSubject('TCPDF Tutorial');
$pdf->SetKeywords('TCPDF, PDF, example, test, guide');
// set default header data
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE . ' 061', PDF_HEADER_STRING);
// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, '', PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, '', PDF_FONT_SIZE_DATA));
// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
// set margins
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);
// set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);
// set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
// set some language-dependent strings (optional)
if (@file_exists(dirname(__FILE__) . '/lang/eng.php')) {
require_once(dirname(__FILE__) . '/lang/eng.php');
$pdf->setLanguageArray($l);
}
// ---------------------------------------------------------
// set font
$pdf->SetFont('helvetica', '', 10);
// add a page
$pdf->AddPage();
$htmlData = html_entity_decode($htmlData);
$htmlData .= '<style>' . file_get_contents($_SERVER['DOCUMENT_ROOT'] . '/css/styles.css') . '</style>';
// output the HTML content
$pdf->writeHTML($htmlData, true, false, true, false, '');
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// reset pointer to the last page
$pdf->lastPage();
// ---------------------------------------------------------
//Close and output PDF document
$pdf->Output($_SERVER['DOCUMENT_ROOT'] . '/data/files/pdf/' . 'ocpdftesting.pdf', 'F');
你檢查過TCPDF文檔嗎? –
在我查看的TCPDF文檔上,我找不到任何東西。 –
你的問題是黑色的邊界(在你的第二個scrren)對不對? –