Warning: file_put_contents(): Only -1 of 56 bytes written, possibly out of free disk space in /var/www/html/index.php on line 3

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 23

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 24

Warning: Cannot modify header information - headers already sent by (output started at /var/www/html/index.php:3) in /var/www/html/cache.php on line 25
cpdf_arc cpdf_circle ClibPDF PHP Manual cpdf_begin_text (PHP 4, 5 <= 5.0.5) — Avvia una sezione di testo Descrizione bool ( int $pdf_document ) La funzione cpdf_begin_text() avvia sezione test...
Forum und email

cpdf_begin_text

(PHP 4, PHP 5 <= 5.0.5)

cpdf_begin_text — Avvia una sezione di testo

Descrizione

bool cpdf_begin_text ( int $pdf_document )

La funzione cpdf_begin_text() avvia una sezione di testo. Restituisce TRUE in caso di successo, FALSE in caso di fallimento. La sezione creata deve essere terminata con cpdf_end_text().

Example#1 Output di testo

<?php
cpdf_begin_text
($pdf);
cpdf_set_font($pdf, 16, "Helvetica", "WinAnsiEncoding");
cpdf_text($pdf, 100, 100, "Un p&ograve; di testo");
cpdf_end_text($pdf)
?>

Vedere anche cpdf_end_text().