Posted by : Unknown
Monday, September 23, 2013
Halooo, bertemu lagi dengan postingan saya di sini. Masih membahas tentang FPDF, kali ini saya akan bermain-main dengan warna :D . Di sini kamu akan menemukan perintah-perintah yang berhubungan dengan warna : SetDrawColor, SetFillColor, SetTextColor. Kita akan membuat frame berwarna sesuai dengan lebar judul tulisan. Tutorial kali ini, masih berkaitan dengan Header dan Footer
Let's Go... :)
<?php
require('./fpdf17/fpdf.php');
class PDF extends FPDF
{
function Header()
{
global $title;
// Arial bold 15
$this->SetFont('Arial','B',15);
// Menghitung lebar judul dan posisi
$w = $this->GetStringWidth($title)+6;
$this->SetX((210-$w)/2);
// Warna Frame
$this->SetDrawColor(0,80,180);
// Warna Background
$this->SetFillColor(230,230,0);
// Warna Teks
$this->SetTextColor(220,50,50);
// Ketipisan frame (1 mm)
$this->SetLineWidth(1);
// Judul
$this->Cell($w,9,$title,1,1,'C',true);
// Line break
$this->Ln(10);
}
function Footer()
{
// Posisi 15 mm dari bawah
$this->SetY(-15);
// Arial italic 8
$this->SetFont('Arial','I',8);
// Warna teks abu-abu
$this->SetTextColor(128);
// Page number
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}
}
$pdf = new PDF();
$title = 'Algoritma Pemrograman dan Basis Data';
$pdf->SetTitle($title);
$pdf->Output();
?>
Beginilah, tampilannya...
Kamu bisa berkreasi sesukamu... :)
Tutorial FPDF:
- Tutorial FPDF (Part 1) - Pengenalan FPDF
- Tutorial FPDF (Part 2) - Contoh Sederhana
- Tutorial FPDF (Part 3) - Header dan Footer
Annisa Permatasari
Referensi :
http://www.fpdf.org/