Commit 8abb8dc7639c0f05c50a705f4cd205a853fcfe20
1 parent
5b784109da
pdflib_demo: added 2nd page
Showing 1 changed file with 5 additions and 0 deletions Side-by-side Diff
pdflib_demo
View file @
8abb8dc
... | ... | @@ -41,6 +41,7 @@ |
41 | 41 | $pdf->set_info('Subject', 'IODP Proposals'); |
42 | 42 | $pdf->set_info('Keywords', 'IODP proposal ocean drilling core expedition'); |
43 | 43 | |
44 | + // START PAGE 1 | |
44 | 45 | $pdf->begin_page_ext(612, 792, ''); |
45 | 46 | |
46 | 47 | $textOpts = "fontname={Helvetica} embedding fontsize=20 " |
... | ... | @@ -53,6 +54,10 @@ |
53 | 54 | |
54 | 55 | // finish this page |
55 | 56 | $pdf->end_page_ext(''); |
57 | + | |
58 | + // START PAGE 2 | |
59 | + //$pdf->begin_page_ext(612, 792, ''); | |
60 | + //$pdf->end_page_ext(''); | |
56 | 61 | |
57 | 62 | // close the document |
58 | 63 | $pdf->end_document(''); |