用PHP创build一个PDF文件

我想从我的网页创buildPDF文件的PHP。 我的文档必须从mysql生成并生成PDF文件。我想要保存这个pdf文件并阅读。请给我代码示例。

使用TCPDF库:

<? require_once("tcpdf/tcpdf.php"); $pdf = new TCPDF(); // set document information $pdf->SetCreator(PDF_CREATOR); $pdf->SetAuthor("my name"); $pdf->SetTitle("my doc"); $pdf->SetSubject("x"); $pdf->SetKeywords("a, b, c"); // set default header data $pic = "/gfx/header.png"; $pdf->SetHeaderData(realpath($pic), "25", "Title"); // 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 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 $pdf->setLanguageArray($l); //initialize document $pdf->AliasNbPages(); // add a page $pdf->AddPage(); // --------------------------------------------------------- // set font $pdf->SetFont("helvetica", "", 12); // set a background color $pdf->SetFillColor(230, 240, 255, true); $pdf->SetFont("", "b", 16); $pdf->Write(16, "some text\n", "", 0, 'C'); $pdf->Output("filename.pdf", "I"); ?> 

我已经有一个HTML页面,最快捷的方式可能是使用HTML2PDF这样的工具将HTML数据“转换”为PDF,而不是从头开始生成PDF文件。

引用该页面:

它允许以PDF格式转换有效的HTML 4.01,并在LGPL下分发。

这个库的devise主要是为了处理TABLE交织生成的发票和其他正式文件。 它还没有所有的标签。

有一些HTML的例子,和相应的PDF文件,所以你可以看到什么是能够的。

https://github.com/tecnickcom/tc-lib-pdf下载最新版本的TCPDF源代码,源代码本身有一个名为examples的文件夹。; 你可以检查出例子中的代码,否则你可以尝试下面的代码。

 <?php require_once('tcpdf/config/tcpdf_config.php'); require_once('tcpdf/tcpdf.php'); // create new PDF document $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); // set default font subsetting mode $pdf->setFontSubsetting(true); // set margins //$pdf->SetHeaderMargin(PDF_MARGIN_HEADER); //$pdf->SetFooterMargin(PDF_MARGIN_FOOTER); // set default header data $pdf->SetHeaderData('', '', 'Hello ','Gudmrng', array(0,64,255), array(0,64,128)); $pdf->setFooterData(array(0,64,0), array(0,64,128)); // 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 font // dejavusans is a UTF-8 Unicode font, if you only need to // print standard ASCII chars, you can use core fonts like // helvetica or times to reduce file size. $pdf->SetFont('dejavusans', '', 10, '', true); // $pdf->SetFont('helvetica', '', 8); // Add a page // This method has several options, check the source code documentation for more information. $pdf->AddPage(); $tbl_header = '<h2 style="color:blue;text-align: center;font-size: 14px;">Headding</h2></br>'; $html = '<table width="530" cellspacing="0" cellpadding="3" border="1"> <tr> <th style="text-align: center;font-size: 10px;font-weight: bold;width:100px;">heading 1</th> <th style="text-align: center;font-size: 10px;font-weight: bold;width:122px;">heading 2</th> </tr>'; $html .= '<tr>'; $html .= '<td><b>Hello World</b></td>'; $html .= '<td><b>Helo </b></td>'; $html .= '</tr>'; $html .= '</table>'; $pdf->writeHTML($tbl_header . $html, true, false, false, false, ''); //$pdf->writeHTML($html, true, 0); //$pdf->writeHTML($html, true, 0); $pdf->Output('test_1.pdf','I'); ?> 

我用CutyCapt做这个。

  1. 下载并安装一个CutyCapt ! 和xvfb运行。
  2. 在html页面中创buildpdf风格,然后通过这个命令从这个页面创buildpdf:

xvfb-run cutycapt –min-width = 1485 –url ='html url'–out ='path to pdf'