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

PDF_begin_document

(PECL pdflib >= 2.0.0)

PDF_begin_documentCreate new PDF file

说明

int PDF_begin_document ( resource $pdfdoc , string $filename , string $optlist )

Creates a new PDF file subject to various options.


PDF 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Create new PDF file

用户评论:

daniel at objective-view dot de (09-Mar-2008 12:03)

Creating a PDF with a defined PDF-Version (1.6 in this case) works like this:

if (PDF_begin_document($p,  "", "compatibility 1.6") == 0) {
    die("Error: " . PDF_get_errmsg($p));
}

wheatin at gmail dot com (08-Nov-2007 02:43)

There doesn't seem to be much documentation on setting options with this function, but here's the format for setting some basic things:

$optlist = "destination={page=1 type=fixed zoom=1 top=100 left=50}";
PDF_begin_document($pdfdoc, $filename, $optlist );

the '=' character can be replaced with a space, but I think '=' makes the code more readable.
Also, you must include 'type=fixed' to use 'zoom','left', or 'top'. You can set 'page' without it, though.
Hope this helps. And if anybody knows a good reference for the options that can be set here and what the format is, please link.