Using DOMPDF 0.6.0 beta 3, I try to build a pdf with a variable number of text pages followed by a last page that is filled with clients logos.
I want to have a image in the footer on all the pages except the last one.
I use this for now, and it adds the footer on all the pages including the last one:
$footer = $pdf->open_object();
$w = $pdf->get_width();
$h = $pdf->get_height();
$y = $h - 2 * $text_height - 24;
$img_w = 590;
$img_h = 170;
$pdf->image("footer-pdf.png", ($w - $img_w) / 2.0, $y - $img_h, $img_w, $img_h);
$pdf->close_object();
$pdf->add_object($footer, "all");
add_object() can receive the (all, add, odd, even) parameters but i can’t see something that can control the last page.
I tried using the $PAGE_NUM and $PAGE_COUNT to check if they are equal it means i am on the last page and do some stuff there. But both $PAGE_NUM and $PAGE_COUNT return 1 everytime.
Any idea on how to remove the footer on the last page?
Thank you.
Try this: