PHP,从HTML生成PDF文件

时间:2014-08-06 18:24:18

标签: php pdf tcpdf mpdf

关于生成pdf文件我是新手

我已经尝试过tcpdf和mpdf,但没有按照我想要的方式获取格式。

这是我的mpdf代码

include('./mpdf.php');
    $mpdf=new mPDF();
    $html = '<!DOCTYPE html>
<html>
<head>
    <title></title>
    <link rel="stylesheet" type="text/css" href="cssForTable.css">
</head>
<body>
<table>
    <thead>
    <tr>
        <th width="25%">Client Details</th>
        <th colspan="2" width="50%"><h2 style="padding-top: 0; margin-bottom: 0; margin-top: 0;text-align: center"><strong>ROAD TRAFFIC ACCIDENT</strong></h2></th>
        <th width="25%">Legal HQ</th>
    </tr>
    </thead>
    <tbody>
    <tr>
        <td width="50%" colspan="2">
            <strong>Instructed Another Solicito?</strong> &nbsp; &nbsp; &nbsp; &nbsp;
            Yes &nbsp; <input type="checkbox" /> &nbsp; &nbsp; No &nbsp; <input type="checkbox" />
        </td>
        <th width="50%" colspan="2" rowspan="3">
            Claiming For:<br />
            Personal Injury &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Yes &nbsp; <input type="checkbox" style="margin-bottom: 7px;" />
                            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;No &nbsp; <input type="checkbox" style="margin-bottom: 7px;" /><br />
            Vehicle Damage &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Yes &nbsp; <input type="checkbox" style="margin-bottom: 7px;" />
                             &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;No &nbsp; <input type="checkbox" style="margin-bottom: 7px;" /><br />
            Loss of Earnings &nbsp; &nbsp; &nbsp; &nbsp; Yes &nbsp; <input type="checkbox" />
                             &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;No &nbsp; <input type="checkbox" />
        </th>
    </tr>
    <tr><th colspan="2"><h3 style="padding-top: 0; margin-bottom: 0; margin-top: 0;">ACCIDENT DETAILS</h3></th></tr>
    <tr>
        <th width="25%">Date of Accident</th>
        <td width="25%">&nbsp;</td>
    </tr>
    <tr>
        <th width="25%">Time of Accident</th>
        <td width="25%">&nbsp;</td>
        <th width="25%">No of Occupants (inc driver)</th>
        <td width="25%">&nbsp;</td>
    </tr>
    <tr>
        <th width="25%">Location of Accident</th>
        <td width="25%">&nbsp;</td>
        <td width="50%" colspan="2" rowspan="2" valign="top" >
            <strong>Were Police Involved? &nbsp; &nbsp; &nbsp; &nbsp;
                Yes &nbsp; <input type="checkbox" /> &nbsp; &nbsp; 
                No &nbsp; <input type="checkbox" />
            <br />
            <br />If so, Police No/Station: </strong>
        </td>
    </tr>
    <tr>
        <td width="25%" colspan="2" rowspan="2" valign="top"><strong>Accident Circumstances</strong><br /><br /></td>
    </tr>
    <tr>
        <th width="25%" colspan="2">
            Is Client:<br />
            Owner <input type="checkbox" style="margin-left: 15em; margin-bottom: 7px;" /><br />
            Driver &nbsp;<input type="checkbox" style="margin-left: 15em; margin-bottom: 7px;" /><br />
            Passenger &nbsp;<input type="checkbox" style="margin-left: 13em;" />
        </th>
    </tr>
    <tr>
        <th width="25%">Weather Conditions</th>
        <th width="75%" colspan="3">        
            <label style="margin-left: 2em; margin-bottom: 7px;" > Sunny &nbsp; &nbsp; <input type="checkbox" /></label>
            <label style="margin-left: 8em; margin-bottom: 7px;" > Rain &nbsp; &nbsp; <input type="checkbox" /></label>
            <label style="margin-left: 8em; margin-bottom: 7px;" > Snow &nbsp; &nbsp; <input type="checkbox" /></label><br />
            <label style="margin-left: 2em; margin-bottom: 7px;" > Ice &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <input type="checkbox" /></label>
            <label style="margin-left: 8em; margin-bottom: 7px;" > Fog &nbsp; &nbsp;  &nbsp;<input type="checkbox" /></label>
            <label style="margin-left: 8em; margin-bottom: 7px;" > Dark &nbsp; &nbsp;  &nbsp; <input type="checkbox" /></label>
        </th>
    </tr>
    </tbody>
</table>
</body>
</html>';


    $mpdf->WriteHTML($html);
    $mpdf->Output();
    exit;

以上代码生成以下PDF文件(截屏)

enter image description here

它应该如下所示

enter image description here

我的问题是,有没有办法在生成HTML时生成PDF我的意思是有没有办法打印客户端生成的html + PHP?

任何想法?

2 个答案:

答案 0 :(得分:2)

HTML2PDF转换器可能会过度使用该布局。您可能应该考虑使用更强大的布局选项的PDF生成器。 缺点是,你必须用另一种布局语言定义你的布局,但这将保证令人满意的输出。 您是否考虑将XSL/FOPDFnow等合适的生成器一起使用?

答案 1 :(得分:0)

是的,你可以这样做。这是完整的代码。 它完美地运作。 您也可以使用post方法从其他页面获取值。你的选择。

<?php $student_id = $_GET['student_id']; ?>
<?php
include("mpdf/mpdf.php");
$html .= "
<html>
<head>
<style>
body {font-family: sans-serif;
    font-size: 10pt;
    background-image: url(\"images/ok.jpg\");

    background-repeat: no-repeat;
    padding-top:10pt;
    margin-top: 100px;
    padding-top: 50px;
}
td { vertical-align: top; 
    border-left: 0.6mm solid #000000;
    border-right: 0.6mm solid #000000;
    align: center;
}

p.student_id{
    padding-left : 140px;
    padding-top  : -27px;
} 

</style>
</head>
<body>
<!--mpdf                                                                          

<p class=\"student_id\">$student_id</p>


<sethtmlpageheader name='myheader' value='on' show-this-page='1' />
<sethtmlpagefooter name='myfooter' value='on' />
mpdf-->


</body>
</html>
";

$mpdf=new mPDF();
$mpdf->WriteHTML($html);
$mpdf->SetDisplayMode('fullpage');

$mpdf->Output();
?>