我想在PHP中使用不同的页面类型生成PDF

时间:2012-04-16 05:57:51

标签: php pdf-generation

我使用dompdf生成PDF文件(数据来自数据库)。

    $dompdf = new DOMPDF();
    $dompdf->load_html($strHtml); // here $strHtml is the containt which I want to write in pdf
    $dompdf->set_paper( array(0,0, 12 * 108, 12 * 72), "portrait" ); // 12" x 12"

    $dompdf->render();

    // The next call will store the entire PDF as a string in $pdf

    $pdf = $dompdf->output();

    // You can now write $pdf to disk, store it in a database or stream it
    // to the client.

    $pdfname = 'PDFNAME'
    file_put_contents('pdf/'.$pdfname.'.pdf', $pdf);

现在在$ strHtml变量中有很多PDF页面,所有页面都是以页面类型生成的。

现在我想要创建所有不同类型的页面,例如第1页包含肖像,第2页包含横向,3包含横向等。

我该如何解决这个问题?

0 个答案:

没有答案