set_option("searchpath={" . $searchpath . "}"); $p->set_option("searchpath={" . $fontpath . "}"); /* This means we must check return values of load_font() etc. */ $p->set_option("errorpolicy=return"); $indoc = $p->open_pdi_document($infile, ""); if ($indoc == 0) throw new Exception("Error: " . $p->get_errmsg()); /* * Determine the number of pages in the input document and compute * the number of output documents. */ $page_count = (int) $p->pcos_get_number($indoc, "length:pages"); $outdoc_count = $page_count / SUBDOC_PAGES + ($page_count % SUBDOC_PAGES > 0 ? 1 : 0); /* * The loop only produces a single output document that is returned over * HTTP. * * For producing all output documents, change the loop condition like this: * * $outdoc_counter < $outdoc_count */ for ($outdoc_counter = 0, $page = 0; $outdoc_counter < 1; $outdoc_counter += 1) { $outfile = $outfile_basename . "_" . ($outdoc_counter + 1) . ".pdf"; /* * Open new sub-document. */ if ($p->begin_document("", "") == 0) throw new Exception("Error: " . $p->get_errmsg()); $p->set_info("Creator", "PDFlib Cookbook"); $p->set_info("Title", $title); $p->set_info("Subject", "Sub-document " . ($outdoc_counter + 1) . " of " . $outdoc_count . " of input document '" . $infile . "'"); for ($i = 0; $page < $page_count && $i < SUBDOC_PAGES; $page += 1, $i += 1) { /* Page size may be adjusted by fit_pdi_page() */ $p->begin_page_ext(0, 0, "width=a4.width height=a4.height"); $pagehdl = $p->open_pdi_page($indoc, $page + 1, ""); if ($pagehdl == 0) throw new Exception("Error opening page: " . $p->get_errmsg()); /* * Place the imported page on the output page, and adjust * the page size */ $p->fit_pdi_page($pagehdl, 0, 0, "adjustpage"); $p->close_pdi_page($pagehdl); $p->end_page_ext(""); } /* Close the current sub-document */ $p->end_document(""); /* * Return the sub-document to the user. If all split documents are to * be processed, do something different, e.g. write the documents * to disk and create an HTML page with a list of links for the * sub-documents. */ $buf = $p->get_buffer(); $len = strlen($buf); header("Content-type: application/pdf"); header("Content-Length: $len"); header("Content-Disposition: inline; filename=" . $outfile); print $buf; } /* Close the input document */ $p->close_pdi_document($indoc); } catch (PDFlibException $e) { echo("PDFlib exception occurred:\n" . "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " . $e->get_errmsg() . "\n"); exit(1); } catch (Throwable $e) { echo($e); exit(1); } $p = 0; ?>