Commit 52c8784437809812951572280adc7288703d1faa
1 parent
e021c94a73
pdflib_demo: fix position of text on second page
Showing 1 changed file with 5 additions and 0 deletions Side-by-side Diff
pdflib_demo
View file @
52c8784
... | ... | @@ -77,6 +77,11 @@ |
77 | 77 | $pdf->fit_pdi_page($ssfPage, 0, 0, ''); |
78 | 78 | $pdf->close_pdi_page($ssfPage); |
79 | 79 | $pdf->close_pdi_document($ssfPDF); |
80 | + | |
81 | + // write some text on to the page | |
82 | + $pdf->fit_textline("Back to Top", 20, 570, | |
83 | + $textOpts . " underline=true"); | |
84 | + | |
80 | 85 | // END PAGE 2 |
81 | 86 | $pdf->end_page_ext(''); |
82 | 87 |