|
NAMEPDF::API2::Page - Methods to interact with individual pagesSYNOPSISmy $pdf = PDF::API2->new(); # Add a page to a new or existing PDF my $page = $pdf->page(); # Set the page size $page->size('letter'); # Set prepress page boundaries $page->boundaries(media => '12x18', trim => 0.5 * 72); # Add an image my $image = $pdf->image('/path/to/file.jpg'); $page->object($image, $x, $y, $w, $h); # Add textual content my $text = $page->text(); # Add graphical content (paths and shapes) my $canvas = $page->graphics(); METHODSsize# Set the page size using a common name $page->size('letter'); # Set the page size using coordinates in points (X1, Y1, X2, Y2) $page->size([0, 0, 612, 792]); # Get the page coordinates in points my @rectangle = $page->size(); Set the physical page size (a.k.a. media box) when called with an argument. See "Page Sizes" below for possible values. Returns the $page object. Returns the coordinates of the rectangle enclosing the physical page size when called without arguments. The size method is a convenient shortcut for setting the PDF's media box when print-related page boundaries aren't required. It's equivalent to the following: # Set $page = $page->boundaries(media => $size); # Get @rectangle = $page->boundaries->{'media'}->@*; boundaries# Set $page->boundaries( media => '13x19', bleed => [0.75 * 72, 0.75 * 72, 12.25 * 72, 18.25 * 72], trim => 0.25 * 72, ); # Get %boundaries = $page->boundaries(); ($x1, $y1, $x2, $y2) = $page->boundaries('trim'); Set prepress page boundaries when called with a hash containing one or more page boundary definitions. Returns the $page object. Returns the current page boundaries if called without arguments. Returns the coordinates for the specified page boundary if called with one argument. Page Boundaries PDF defines five page boundaries. When creating PDFs for print shops, you'll most commonly use just the media box and trim box. Traditional print shops may also use the bleed box when adding printer's marks and other information.
Page Sizes PDF page sizes are stored as rectangle coordinates. For convenience, PDF::API2 also supports a number of aliases and shortcuts that are more human-friendly. The following formats are available:
rotation$page = $page->rotation($degrees); Rotates the page clockwise when displayed or printed. $degrees must be a multiple of 90 and may be negative for counter-clockwise rotation. The coordinate system follows the page rotation. In other words, after rotating the page 180 degrees, [0, 0] will be in the top right corner of the page rather than the bottom left, X will increase to the right, and Y will increase downward. To create a landscape page without moving the origin, use "size". graphicsmy $canvas = $page->graphics(%options); Returns a PDF::API2::Content object for drawing paths and shapes. The following options are available:
textmy $text = $page->text(%options); Returns a PDF::API2::Content object for including textual content. The options are the same as the "graphics" method. object$page = $page->object($object, $x, $y, $scale_x, $scale_y); Places an image or other external object (a.k.a. XObject) on the page in the specified location. For images, $scale_x and $scale_y represent the width and height of the image on the page in points. If $scale_x is omitted, it will default to 72 pixels per inch. If $scale_y is omitted, the image will be scaled proportionally based on the image dimensions. For other external objects, the scale is a multiplier, where 1 (the default) represents 100% (i.e. no change). If the object to be placed depends on a coordinate transformation (e.g. rotation or skew), first create a content object using "graphics", then call "object" in PDF::API2::Content after making the appropriate transformations. annotationmy $annotation = $page->annotation(); Returns a new PDF::API2::Annotation object. MIGRATIONSee "MIGRATION" in PDF::API2 for an overview.
Visit the GSP FreeBSD Man Page Interface. |