Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How show the total number of pages in dompdf?

sample: pag 1 of 5

i'm using ".pagenum:before { content: counter(page); }" to view the current page

I work with 0.6 version and $PAGE_NUM and $PAGE_COUNT does not work.

share|improve this question

5 Answers

up vote 3 down vote accepted

By default, inline PHP is disabled for security reasons, you need to enable it yourself in dompdf_config.custom.inc.php. See here.

For now, total page count is not supported with the CSS you are using, we are planning to make it work in 0.6 final though.

share|improve this answer
If you want to right-align the page num/count, have a look at stackoverflow.com/a/13378393/6632 – Craig Francis Nov 14 '12 at 12:02

In php, you can access dompdf variables:

$PAGE_NUM       the current page number
$PAGE_COUNT     the total number of pages in the document 

more info http://code.google.com/p/dompdf/wiki/Usage

share|improve this answer
$PAGE_NUM and $PAGE_COUNT does not work on version 0.6 – Pedro Mar 30 '11 at 13:17
Then you've found a bug. I would consider testing if the bug in 0.6beta2 still exists, or check - if it is a regression - that 0.6b1 fixes this. Dompdf is quite unstable unfortunately. – Exception e Mar 30 '11 at 14:31

$PAGE_COUNT is the total number of pages.

Example

<script type="text/php">
if (isset($pdf) ) {
    echo $PAGE_COUNT;
}
</script>

Documentation

Update

If you are using an old version where this is not supported, upgrade. Otherwise, you may be out of luck.

share|improve this answer

See the attachment named issue121.php on this bug report. Worked for me. As I understand it you can't echo the page num but you can draw it somewhere.

http://code.google.com/p/dompdf/issues/detail?id=121

share|improve this answer

Check you have enabled inline_pdf in dompdf.

Use this code, you can put where you like, it gets the height and width of the document and puts the page/total_pages at the bottom right.

<script type = "text/php">
if ( isset($pdf) ) { 
    $pdf->page_script('
        if ($PAGE_COUNT > 1) {
            $font = Font_Metrics::get_font("Arial, Helvetica, sans-serif", "normal");
            $size = 12;
            $pageText = $PAGE_NUM . "/" . $PAGE_COUNT;
            $y = $pdf->get_height() - 24;
            $x = $pdf->get_width() - 15 - Font_Metrics::get_text_width($pageText, $font, $size);
            $pdf->text($x, $y, $pageText, $font, $size);
        } 
    ');
}

Seen at the end of this page

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.