Если вы печатаете на странице перед импортом шаблона страницы - все работает.вот мой код:
$pdf - > AddPage();
//draw watermark
$pdf - > SetTextColor(215, 215, 215);
$pdf - > SetFont('Times', '', 90);
$pdf - > RotatedText(24.5, 234.5, $school_data['watermark'], 45);
$pdf - > SetTextColor(0, 0, 0);
//load template
pdf - > setSourceFile('reports/template.pdf');
$tplIdx = $pdf - > importPage(1);
$pdf - > SetAutoPagebreak(false, 0);
//use the imported page and place it at point 0,0; calculate width and height
//automaticallay and ajust the page size to the size of the imported page
$pdf - > useTemplate($tplIdx, 0, 0, 0, 0, false);