PHP Velho Oeste 2024

PDF_get_pdi_value

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0)

PDF_get_pdi_valueObține un parametru numeric PDI [învechit]

Descrierea

PDF_get_pdi_value ( resource $p , string $key , int $doc , int $page , int $reserved ) : float

Obține conținutul unui parametru de tip numeric al unui document PDI.

Această funcție este învechită începând cu PDFlib versiunea 7, utilizați PDF_pcos_get_number() în loc.

add a note add a note

User Contributed Notes 3 notes

up
0
gregors at rose-hulman dot edu
20 years ago
If you are having troubles getting the page count make sure you have Root caplitalized correctly.

$numPages=pdf_get_pdi_value($p,"/Root/Pages/Count",$input,0,0);
up
0
Anonymous
20 years ago
For keys which are not page-related page must be -1 (in PHP: 0).
up
0
ian dot kinnear at optus-ebiz dot com
22 years ago
From the pdflib manual...

key: Specifies the name of the parameter
doc: a valid PDF document handle retrieved with PDF_open_pdi()
page: A valid PDF page handle (not page number!). For keys which are not page-related page must be -1

Example:

$numPages=pdf_get_pdi_value($p,"/root/Pages/Count",$input,0,0);
To Top