Set Margin Bawah halaman FPDF
tinggal di beri syntax : $pdf->SetAutoPageBreak(true, 30);
misal jadi seperti dibawah :
class PDF extends FPDF
{
function Footer()
{
//atur posisi 1.5 cm dari bawah
$this->SetY(-15);
//buat garis horizontal
$this->Line(10, $this->GetY(), 200, $this->GetY());
//Arial italic 9
$this->SetFont('Arial', 'I', 9);
//nomor halaman
$this->Cell(0, 10, 'Halaman. ' . $this->PageNo(), 0, 0, 'R');
}
//-------------------------
}
$x = 0;
$y = 0;
$pdf = new PDF('L', 'mm', 'A4');
$pdf->SetMargins(27, 20, 30, 30);
$pdf->SetFont('Times', '', 12);
$pdf->SetAutoPageBreak(true);
$pdf->SetAutoPageBreak(true, 30);
$pdf->AddPage();
.
No comments
Saya sangat berterimakasih apabila sahabat sekalian bersedia untuk tidak meninggalkan spam dan meninggalkan komentar yang berhubungan dengan artikel di atas.