Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, int fill [, mixed link]]]]]]])
w
h
txt
border
ln
align
fill
link
//Yazı tipini ata
$pdf->SetFont('Arial','B',16);
//8 cm sağa git
$pdf->Cell(80);
//20*10 mm hücre ve satır boşluğu ile ortalanmış yazıyı yaz
$pdf->Cell(20,10,'BASLIK',1,1,'C');