pdf_attach_file
(PHP 4 >= 4.0.5)
pdf_attach_file -- Adds a file attachment for current page
Description
bool pdf_attach_file ( resource pdfdoc, float llx, float
lly, float urx, float ury, string filename, string description,
string author, string mimetype, string icon)
Add a file attachment annotation. icon is one of graph,
paperclip, pushpin, or tag. Returns TRUE on success or FALSE
on failure.
Note: Only the 'Full' Acrobat software will be able to
display these file attachments. All other PDF viewers will
either show nothing or display a question mark.
pdf_begin_page
(PHP 3>= 3.0.6, PHP 4 )
pdf_begin_page -- Starts new page
Description
bool pdf_begin_page ( resource pdfdoc, float width, float
height)
Add a new page to the document. Returns TRUE on success
or FALSE on failure. The width and height are specified
in points, which are 1/72 of an inch.
Table 1. Common Page Sizes in Points
name size
A0 2380?3368
A1 1684?2380
A2 1190?1684
A3 842?1190
A4 595?842
A5 421?595
A6 297?421
B5 501?709
letter (8.5"?11") 612?792
legal (8.5"?14") 612?1008
ledger (17"?11") 1224?792
11"?17" 792?1224
See also pdf_end_page().
|