PDF_create_bookmark

(PECL pdflib >= 2.0.0) Create bookmark int PDF_create_bookmark ( resource $pdfdoc, string $text, string $optlist ) Creates a bookmark subject to various options.

PDF_create_annotation

(PECL pdflib >= 2.0.0) Create rectangular annotation bool PDF_create_annotation ( resource $pdfdoc, float $llx, float $lly, float $urx, float $ury, string $type, string $optlist ) Creates a rectangular annotation on the current page.

PDF_create_action

(PECL pdflib >= 2.0.0) Create action for objects or events int PDF_create_action ( resource $pdfdoc, string $type, string $optlist ) Creates an action which can be applied to various objects and events.

PDF_create_3dview

(PECL pdflib >= 2.1.0) Create 3D view int PDF_create_3dview ( resource $pdfdoc, string $username, string $optlist ) Creates a 3D view. This function requires PDF 1.6.

PDF_continue_text

(PHP 4, PECL pdflib >= 1.0.0) Output text in next line bool PDF_continue_text ( resource $p, string $text ) Prints text at the next line. Returns TRUE on success or FALSE on failure.

PDF_concat

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Concatenate a matrix to the CTM bool PDF_concat ( resource $p, float $a, float $b, float $c, float $d, float $e, float $f ) Concatenates a matrix to the current transformation matrix (CTM). Returns TRUE on success or FALSE on failure.

PDF_closepath

(PHP 4, PECL pdflib >= 1.0.0) Close current path bool PDF_closepath ( resource $p ) Closes the current path. Returns TRUE on success or FALSE on failure.

PDF_closepath_stroke

(PHP 4, PECL pdflib >= 1.0.0) Close and stroke path bool PDF_closepath_stroke ( resource $p ) Closes the path, and strokes it. Returns TRUE on success or FALSE on failure.

PDF_closepath_fill_stroke

(PHP 4, PECL pdflib >= 1.0.0) Close, fill and stroke current path bool PDF_closepath_fill_stroke ( resource $p ) Closes the path, fills, and strokes it. Returns TRUE on success or FALSE on failure.

PDF_close

(PHP 4, PECL pdflib >= 1.0.0) Close pdf resource [deprecated] bool PDF_close ( resource $p ) Closes the generated PDF file, and frees all document-related resources. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 6, use PDF_end_document() instead.