Cell(float w [, float h [, string txt [, mixed border [, int ln [, string align [, boolean fill [, mixed link]]]]]]])
w
h
txt
border
ln
align
fill
link
//Imposta il font
$pdf->SetFont('Arial','B',16);
//Muove a 8 cm dalla destra
$pdf->Cell(80);
//Testo centrato in una cella di 20*10 mm e interruzione di linea
$pdf->Cell(20,10,'Title',1,1,'C');