PDF 函数
在线手册:中文  英文

PDF_set_info

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

PDF_set_infoFill document info field

说明

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

Fill document information field key with value. 成功时返回 TRUE, 或者在失败时返回 FALSE


PDF 函数
在线手册:中文  英文

用户评论:

many dot uy at hotmail dot com (2008-06-13 09:48:28)

<?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");

?>

mrmueller at gmx dot com (2006-09-10 08:00:45)

If the first example does'nt show the correct dcoument property in Acrobat Reader, you should change first letters of the paramentes in capital letter. Instead "author" you should type "Author"...
// $pdf is the name of the pdf ducoment you created.
pdf_set_info($pdf, "Author", "Ahmed");
pdf_set_info($pdf, "Title", "PDF tutorial");
pdf_set_info($pdf, "Subject" , "PDF tutorial");
pdf_set_info($pdf, "Creator", "phpnet");

易百教程