I am using TCPDF to generate a pdf.

My issue is the following line from the Footer() method:

$this->Cell(0, 10, 'Page '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 'T', false, 'R');

This is the standard line for inserting the pagenumber in the document's footer but there is a litte space to right in the output. You can see it in example 1 from the website: http://www.tcpdf.org/examples/example_001.pdf

If I insert normal text like this:

$this->Cell(0, 10, 'Foobar', 'T', false, 'R');

the text is perfectly aligned to the right without any problems.

I digged into the source, it seems to be something with the encoding, but I don't really get the point.. can somebody help?

regards

link|improve this question

40% accept rate
feedback

3 Answers

i solved it like this:

$this->Cell(0, 0, $this->getAliasRightShift().$this->PageNo().'/'.$this->getAliasNbPages(), 1, 0, 'R');

if you have more than 99 pages, you will again have alignment problems! use something else to generate a pdf of your degree thesis! :)

link|improve this answer
feedback

I believe the problem is within the aliases. These are just pieces of text of which the width is calculated at the time of insertion, and not the time of replacing them with numbers.

So the text-width is calculated for the string (literally) {np}/{nb}. And when it is replaced with numbers right at the end 1/9 is smaller than that, whilst 23/109 is larger.

You can replace the NbPages alias used (setAliasNbPages()?), with something that reflects the width of the total number of pages íf you can estimate how many that will be. And I believe you can directly use the current page number without using an alias so the problem at least doesn't appear for that alias.

link|improve this answer
feedback

Unfortunately TCPDF align the alias and not the final number that replaces the alias. Using $this->AliasNbPages('{p}') and $this->AliasNumPAge('{n}') won't help a lot. Extra padding will remain in place.

The only solution is to put page numbers instead of aliases.

Original bug at SourceForge.net (TCPDF bug tracker)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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