AddPage(); #$pdf->SetFont('Arial','B',16); #$pdf->Cell(40,10,'Hello World!'); $pages_count = $pdf->setSourceFile('./test.pdf'); for($i = 1; $i <= $pages_count; $i++) { $pdf->AddPage(); $tplIdx = $pdf->importPage($i); $pdf->useTemplate($tplIdx, 0, 0); if($i == 1){ $pdf->SetFont('Arial','B',20); $pdf->SetY(5); $pdf->Cell( 0, 10, '1', 0, 0, 'R' ); } } $pdf->Output(); ?>