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

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 函数
在线手册:中文  英文

用户评论:

walterdolce at gmail dot com (2012-08-09 22:40:22)

If you want a complete documentation on the entire PDFlib is it possible to download, read and study the reference .pdf file (and related) on [ http://www.pdflib.com/fileadmin/pdflib/pdf/manuals/PDFlib-7-API-reference.pdf ]
Note that this link points to a precise version of the library. You may want to check newer versions in the future on the same domain.

daniel at objective-view dot de (2008-03-09 04:03:18)

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 (2007-11-08 06:43:19)

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.

易百教程