PHP Velho Oeste 2024

PDF_set_info

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

PDF_set_infoFill document info field

Description

PDF_set_info ( resource $p , string $key , string $value ) : bool

Fill document information field key with value. Returns TRUE on success or FALSE on failure.

add a note add a note

User Contributed Notes 1 note

up
-29
many dot uy at hotmail dot com
15 years ago
<?php
$pdf
= pdf_new();

pdf_open_file($pdf, "test.pdf");

// set PDF properties
pdf_set_info($pdf, "Author", "Martín Gonzalez");
pdf_set_info($pdf, "Title", "Test PDF");
pdf_set_info($pdf, "Creator", "Martín Gonzalez");
pdf_set_info($pdf, "Subject", "Test  PDF");

?>
To Top