PHP Velho Oeste 2024

PDF_resume_page

(PECL pdflib >= 2.0.0)

PDF_resume_pageResume page

Description

PDF_resume_page ( resource $pdfdoc , string $optlist ) : bool

Resumes a page to add more content to it.

add a note add a note

User Contributed Notes 1 note

up
0
Anonymous
11 years ago
For those trying to figure out how on earth to use this function:

<?php
PDF_suspend_page
($pdf, '');
PDF_resume_page($pdf, 'pagenumber=1');
?>
To Top