簡體   English   中英

使用 fpdf 的 pdf 過度分頁

[英]Excessive page break of pdf using fpdf

我想以表格形式顯示 MySQL 數據庫中的數據。 當數據超過第一頁時,下一頁正確寫入下一行。 但是之后的每一行都被寫入一個新頁面。 這意味着第一頁看起來不錯,但第二頁及以后的頁面將只包含一行。 我怎樣才能防止這種情況發生? 下面是我的代碼:

<?php
require('fpdf17/fpdf.php');
require('db.php');

//create a FPDF object
$pdf=new FPDF();

//set font for the entire document
$pdf->SetFont('Times','B',20); //set font for the whole page (font family, style, size)
$pdf->SetTextColor(0,0,0); //using RGB value

//set up a page
$pdf->AddPage('P');  //potrait orientation
$pdf->SetDisplayMode('default'); //using 100 percent zoom and the viewer's default layout

//insert an image
$icon = "files/icon.png";
$pdf->Cell (10);
$pdf->Cell(60, 60, $pdf->Image($icon, $pdf->GetX(), $pdf->GetY(), 33.78), 0, 0, 'L', false);

$pdf->SetFillColor(0,0,0);
$pdf->SetFont('Times', '', 12);
$pdf->SetXY(10, 30);
$pdf->Cell(10);
$pdf->Cell(30, 6, 'Retrieval Date' , 0, 0, '', 0);
date_default_timezone_set("Asia/Kuala_Lumpur"); //set default time zone
$pdf->Cell(30, 6, ': '.date("d/m/Y"), 0, 2, 'B', 0);

//Set x and y position for the main text, reduce font size and write content
$pdf->SetXY(20,40); //setting the position
$pdf->SetFont('Times', 'BU', 14);
$pdf->Write(12,'Absenteeism record for:');

$fac = addslashes( filter_input( INPUT_GET,'fac',FILTER_SANITIZE_STRING ) );
$data = "SELECT * FROM faculty WHERE fac_code LIKE '$_GET[fac]'";

$result = $conn->query($data) or die("Error: ".mysqli_error($conn));
while($ser=mysqli_fetch_array($result)){

    $fac_name = $ser['fac_name'];
    $pdf->SetFillColor(0,0,0);
    $pdf->SetFont('Times', '', 12);
    $pdf->SetY(50);
    $pdf->Cell(10);
    $pdf->SetX(20);
    $pdf->Cell(30, 6, 'FACULTY' , 0, 0, '', 0);
    $pdf->Cell(30, 6, ': '.$fac.'-'.' '.$fac_name, 0, 2, 'B', 0);
}

//start first table
$pdf->SetFillColor(255,255,255);
$pdf->SetFont('Times', 'B', 12);
$pdf->SetXY(21,58);
$pdf->Cell(10, 6, 'No.', 1, 0, 'L', 1);
$pdf->Cell(25, 6, 'Matric no', 1, 0, 'L', 1);
$pdf->Cell(45, 6, 'Name', 1, 0, 'L', 1);
$pdf->Cell(31, 6, 'Programme', 1, 0, 'L', 1);
$pdf->Cell(20, 6, 'Course', 1, 0, 'L', 1);
$pdf->Cell(35, 6, 'Absenteeism %', 1, 0, 'L', 1);

$row_height = 6;
$y1_axis = 58;
$y1_axis = $y1_axis + $row_height;
$counter = 1;
$fac = addslashes( filter_input( INPUT_GET,'fac',FILTER_SANITIZE_STRING ) );
$data = "
    SELECT
        stud_matric, stud_name, fac_code, fac_name, group_group_code, prog_code, course_course_code,
        getid, SUM(studAtt_endTime - studAtt_startTime)/(course_contacthour_perWeek * 14) AS 'sum'
    FROM studentattendance";



$result = $conn->query($data)  or die("Error: ".mysqli_error($conn));
while($ser=mysqli_fetch_array($result)){

    $fac_name = $ser['fac_name'];
    $stud_matric = $ser['stud_matric'];
    $stud_name = $ser['stud_name'];
    $prog_code = $ser['prog_code'];
    $course_course_code = $ser['course_course_code'];
    $per= $ser['sum'];

    $pdf->SetFont('Times', '', 12);
    $pdf->SetXY(21, $y1_axis);
    $pdf->Cell(10, 6, $counter, 1, 0, 'L', 1);
    $pdf->Cell(25, 6, $stud_matric, 1, 0, 'L', 1);
    $pdf->Cell(45, 6, $stud_name, 1, 0, 'L', 1);
    $pdf->Cell(31, 6, $prog_code, 1, 0, 'L', 1);
    $pdf->Cell(20, 6, $course_course_code, 1, 0, 'L', 1);
    $pdf->Cell(35, 6, $per, 1, 0, 'L', 1);
    $pdf->Ln();

    $y1_axis = $y1_axis + $row_height;
    $counter++;
}
//end first table

//Output the document
$pdf->Output("$fac.pdf",'I'); 
?> 

我懷疑原因是你的$y1_axis變得太大了; 可能最簡單的解決方案是添加到數據庫循環的底部:

$y1_axis = $y1_axis + $row_height;
$counter++;
if ($counter % 35 === 0) {
    $pdf->AddPage();
    $y1_axis = 20;
}

並確保在創建 PDF 時使用$pdf->SetAutoPageBreak(false)禁用自動分頁符。

改變這個

$data = " SELECT stud_matric, stud_name, fac_code, fac_name, group_group_code, prog_code, course_course_code, getid, SUM(studAtt_endTime - studAtt_startTime)/(course_contacthour_perWeek * 14) AS 'sum' FROM studentattendance";

對此

$data = "SELECT stud_matric, stud_name, fac_code, fac_name, group_group_code, prog_code, course_course_code, getid, ((studAtt_endTime - studAtt_startTime)/(course_contacthour_perWeek * 14)) AS sum FROM studentattendance";

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM