html生成pdf

/**
 * 生成pdf
 * @param  string $html      需要生成的内容
 */
function pdf($html=‘<h1 style="color:red">hello word</h1>‘){
    vendor(‘Tcpdf.tcpdf‘);
    $pdf = new \Tcpdf(PDF_PAGE_ORIENTATION,PDF_UNIT,PDF_PAGE_FORMAT,true,‘UTF-8‘,false);
    // 设置打印模式
    $pdf->SetCreator(PDF_CREATOR);
    $pdf->SetAuthor(‘Nicola Asuni‘);
    $pdf->SetTitle(‘TCPDF Example 001‘);
    $pdf->SetSubject(‘TCPDF Tutorial‘);
    $pdf->SetKeywords(‘TCPDF,PDF,example,test,guide‘);
    // 是否显示页眉
    $pdf->setPrintHeader(false);
    // 设置页眉显示的内容
    $pdf->SetHeaderData(‘logo.png‘,60,‘baijunyao.com‘,‘白俊遥博客‘,array(0,64,255),128));
    // 设置页眉字体
    $pdf->setHeaderFont(Array(‘dejavusans‘,‘‘,‘12‘));
    // 页眉距离顶部的距离
    $pdf->SetHeaderMargin(‘5‘);
    // 是否显示页脚
    $pdf->setPrintFooter(true);
    // 设置页脚显示的内容
    $pdf->setFooterData(array(0,0),128));
    // 设置页脚的字体
    $pdf->setFooterFont(Array(‘dejavusans‘,‘10‘));
    // 设置页脚距离底部的距离
    $pdf->SetFooterMargin(‘10‘);
    // 设置默认等宽字体
    $pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);
    // 设置行高
    $pdf->setCellHeightRatio(1);
    // 设置左、上、右的间距
    $pdf->SetMargins(‘10‘,‘10‘,‘10‘);
    // 设置是否自动分页  距离底部多少距离时分页
    $pdf->SetAutoPageBreak(TRUE,‘15‘);
    // 设置图像比例因子
    $pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);
    if (@file_exists(dirname(__FILE__).‘/lang/eng.php‘)) {
        require_once(dirname(__FILE__).‘/lang/eng.php‘);
        $pdf->setLanguageArray($l);
    }
    $pdf->setFontSubsetting(true);
    $pdf->AddPage();
    // 设置字体
    $pdf->SetFont(‘stsongstdlight‘,14,true);
    $pdf->writeHTMLCell(0,$html,1,true);
    $pdf->Output(‘example_001.pdf‘,‘I‘);
}

相关文章

HTML代码中要想改变字体颜色,常常需要使用CSS样式表。CSS是...
HTML代码如何让字体盖住图片呢?需要使用CSS的position属性及...
HTML代码字体设置 在HTML中,我们可以使用标签来设置网页中的...
在网页设计中,HTML代码的字体和字号选择是非常重要的一个环...
HTML(Hypertext Markup Language,超文本标记语言)是一种用...
外链是指在一个网页中添加一个指向其他网站的链接,用户可以...