NAME

PDF::Page - Represents a PDF page, inherits from PDF::Pages

DESCRIPTION

Represents a page of output in PDF. It also keeps track of the content stream, any resources (such as fonts) being switched, etc.

Page inherits from Pages due to a number of shared methods. They are really structurally quite different.

INSTANCE VARIABLES

A page has various working variables:

curstrm

The currently open stream

METHODS

PDF::Page->new($parent)

Creates a new page based on a pages object (perhaps the root object). Notice that here $parent is not the file context but the parent pages object. The file context is stored, as normal, in the ' parent' field.

The page is also added to the parent at this point, so pages are ordered in a PDF document in the order in which they are created rather than in the order they are closed.

Only the essential elements in the page dictionary are created here, all others are either optional or can be inherited.

$p->add($str)

Adds the string to the currently active stream for this page. If no stream exists, then one is created and added to the list of streams for this page.

The slightly cryptic name is an aim to keep it short given the number of times people are likely to have to type it.

2 POD Errors

The following errors were encountered while parsing the POD:

Around line 24:

'=item' outside of any '=over'

Around line 28:

You forgot a '=back' before '=head1'