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"); if ($p->begin_document("", "") == 0) throw new Exception("Error: " . $p->get_errmsg()); $p->set_info("Creator", "PDFlib Cookbook"); $p->set_info("Title", $title); /* Open a PDF containing Blocks */ $indoc = $p->open_pdi_document($infile, ""); if ($indoc == 0) throw new Exception("Error: " . $p->get_errmsg()); /* Loop over all pages of the input document */ $pagecount = $p->pcos_get_number($indoc, "length:pages"); for ($pageno = 1; $pageno <= $pagecount; $pageno++) { $page = $p->open_pdi_page($indoc, $pageno, ""); if ($page == -1) throw new Exception("Error: " . $p->get_errmsg()); /* Page size may be adjusted by fit_pdi_page() */ $p->begin_page_ext(0, 0, "width=a4.width height=a4.height"); /* Copy all Blocks from the page */ if ($p->process_pdi($indoc, 0, "action=copyallblocks block={pagenumber=" . $pageno . "}") == 0) throw new Exception("Error: " . $p->get_errmsg()); /* Import the page content itself */ $p->fit_pdi_page($page, 0, 0, "adjustpage"); $p->end_page_ext(""); } $p->end_document(""); $p->close_pdi_document($indoc); $buf = $p->get_buffer(); $len = strlen($buf); header("Content-type: application/pdf"); header("Content-Length: $len"); header("Content-Disposition: inline; filename=clone_blocks.pdf"); print $buf; } catch (PDFlibException $e) { echo("PDFlib exception occurred:\n". "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " . $e->get_errmsg() . "\n"); exit(1); } catch (Throwable $e) { echo("PHP exception occurred: " . $e->getMessage() . "\n"); exit(1); } $p = 0; ?>