PHP Velho Oeste 2024

PDF_fill_textblock

(PECL pdflib >= 2.0.0)

PDF_fill_textblockRellenar un bloque de texto con infomación variable

Descripción

PDF_fill_textblock ( resource $pdfdoc , int $page , string $blockname , string $text , string $optlist ) : int

Rellena un bloque de texto con infomación variable según sus propiedades.

Esta función sólo está disponible en PDFlib Personalization Server (PPS).

add a note add a note

User Contributed Notes 2 notes

up
1
Anonymous
14 years ago
This function's purpose is to fill in an AcroForm field.  The concept of "Block" comes from the PDFlib Personalization Server (PPS) terminology.
up
-2
stephen at pacificscreening dot com
15 years ago
You should be aware that the PDF Lib documentation says that this method should return a textflow handle that can then be used on subsequent calls (i.e. to have an arbitrary number of boxes and have the text continue to spill over). It does not, at least not in my version of PHP (4.3.8). I had to dig around and find a message in the official message boards saying it does NOT work this way. The only way to do textflow is to use pdf_fit_textflow() and grab the locations of the target box each time.
To Top