Ich versuche, eine PDF-Datei mit TCPDF zu erstellen. Aber als ich versucht habe, Inline-CSS in den HTML-Code einzufügen, wird eine leere Seite angezeigt! Hier sind ein paar Zeilen aus meinem HTML:
pdf->AddPage();
// set font
$pdf->SetFont('helvetica', 'B', 20);
$pdf->Write(0, 'Example of HTML Justification', '', 0, 'L', true, 0, false, false, 0);
// create some HTML content
$html = '
<div id="wrapper" style="width:900px;height:auto;margin:0 auto;">
<div id="header" style="width:900px;height:180px;border-bottom:2px solid #5a5a5a;">
<div id="img" style="width:174px;height:87px;position:relative;top:10px;left:350px;"><img src="Untitled Document_files/logoticket.png" /></div>
<div id="text" style="width:250px;position:relative;left:315px;top:20px;font-family:Arial, Helvetica, sans-serif;font-weight:bold;font-size:14px;">E-TICKET/RESERVATION VOUCHER</div>
<div id="text2" style="width:200px;position:relative;left:345px;top:40px;font-family:Arial, Helvetica, sans-serif;
font-weight:bold;font-size:12px;">Visit - www.bookings.7sisters.in</div>
</div>
<div id="mainContent">
<div id="icon" style="width:600px;
height:37px;
position:relative;
left:190px;
top:20px;">
<img src="Untitled D.....
usw.
Ich füge den Code ein in TCPDF-Beispiel 39 . Aber die Ausgabe besteht nur aus dem TCPDF-Logo und der Zeile "Example of HTML Justification". Was ist der Grund dafür? Oder unterstützt es kein Inline-CSS?