使用fpdf

时间:2016-12-29 03:29:38

标签: php pdf fpdf pdf-conversion

我有一个HTML-PHP表格(从mySQL中提取)。我想用fpdf将其转换为pdf。转换过程是成功的,但问题是每个单元格的位置真的很糟糕。

我试过这段代码:

$pdf -> SetY(4);    // set the cursor at Y position 4
$pdf->Cell(20,50,$body);  // draw a cell at pos 4 that has a a width 20 and height 50

但结果仍然是这样的: view after export 即使标题行也搞砸了。

例如,您可以通过搜索42-7278954作为出货代码和965958038-X作为参考编号来尝试here。然后单击按钮导出为PDF。 view before export

您可以在此post中查看我的视图表(HTML-PHP)代码。

到目前为止,这是我的代码:

public function setpdf()
   {
        require (__DIR__ . '/libraries/html_table.php');
    $body = $_POST['body'];
    $pdf=new PDF();
    $pdf->AddPage('L');
    $pdf->SetFont('Arial','',9);

    $pdf -> SetY(4);    // set the cursor at Y position 4
    $pdf->Cell(20,50,$body);  // draw a cell at pos 4 that has a a width 20 and height 50

    $pdf->WriteHTML($body);
    $pdf->Output();
   }

在html_table.php中查看代码的链接是here

0 个答案:

没有答案