PDF_open_pdi_document

(PECL pdflib >= 2.1.0) Prepare a pdi document int PDF_open_pdi_document ( resource $p, string $filename, string $optlist ) Open a disk-based or virtual PDF document and prepare it for later use.

PDF_open_memory_image

(PHP 4, PECL pdflib >= 1.0.0) Open image created with PHP's image functions [not supported] int PDF_open_memory_image ( resource $p, resource $image ) This function is not supported by PDFlib GmbH.

PDF_open_jpeg

(PHP 4, PECL pdflib >= 1.0.0) Open JPEG image [deprecated] This function is deprecated since PDFlib version 3, use PDF_load_image() instead.

PDF_open_image

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Use image data [deprecated] int PDF_open_image ( resource $p, string $imagetype, string $source, string $data, int $length, int $width, int $height, int $components, int $bpc, string $params ) Uses image data from a variety of data sources. This function is deprecated since PDFlib version 5, use virtual files and PDF_load_image() instead.

PDF_open_image_file

(PHP 4, PECL pdflib >= 1.0.0) Read image from file [deprecated] int PDF_open_image_file ( resource $p, string $imagetype, string $filename, string $stringparam, int $intparam ) Opens an image file. This function is deprecated since PDFlib version 5, use PDF_load_image() with the colorize, ignoremask, invert, mask, masked, and page options instead.

PDF_open_gif

(PHP 4, PECL pdflib >= 1.0.0) Open GIF image [deprecated] This function is deprecated since PDFlib version 3, use PDF_load_image() instead.

PDF_open_file

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Create PDF file [deprecated] bool PDF_open_file ( resource $p, string $filename ) Creates a new PDF file using the supplied file name. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 6, use PDF_begin_document() instead.

PDF_open_ccitt

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Open raw CCITT image [deprecated] int PDF_open_ccitt ( resource $pdfdoc, string $filename, int $width, int $height, int $BitReverse, int $k, int $Blackls1 ) Opens a raw CCITT image. This function is deprecated since PDFlib version 5, use PDF_load_image() instead.

PDF_new

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Create PDFlib object resource PDF_new ( void ) Creates a new PDFlib object with default settings.

PDF_moveto

(PHP 4, PECL pdflib >= 1.0.0) Set current point bool PDF_moveto ( resource $p, float $x, float $y ) Sets the current point for graphics output. Returns TRUE on success or FALSE on failure.