PDF::Create - create PDF files |
PDF::Create - create PDF files
use PDF::Create;
my $pdf = new PDF::Create('filename' => 'mypdf.pdf', 'Version' => 1.2, 'PageMode' => 'UseOutlines', 'Author' => 'Fabien Tassin', 'Title' => 'My title', ); my $root = $pdf->new_page('MediaBox' => [ 0, 0, 612, 792 ]);
# Add a page which inherits its attributes from $root my $page = $root->new_page;
# Prepare 2 fonts my $f1 = $pdf->font('Subtype' => 'Type1', 'Encoding' => 'WinAnsiEncoding', 'BaseFont' => 'Helvetica'); my $f2 = $pdf->font('Subtype' => 'Type1', 'Encoding' => 'WinAnsiEncoding', 'BaseFont' => 'Helvetica-Bold');
# Prepare a Table of Content my $toc = $pdf->new_outline('Title' => 'Document', 'Destination' => $page); $toc->new_outline('Title' => 'Section 1'); my $s2 = $toc->new_outline('Title' => 'Section 2', 'Status' => 'closed'); $s2->new_outline('Title' => 'Subsection 1');
$page->stringc($f2, 40, 306, 426, "PDF::Create"); $page->stringc($f1, 20, 306, 396, "version $PDF::Create::VERSION");
# Add another page my $page2 = $root->new_page; $page2->line(0, 0, 612, 792); $page2->line(0, 792, 612, 0);
$toc->new_outline('Title' => 'Section 3'); $pdf->new_outline('Title' => 'Summary');
# Add something to the first page $page->stringc($f1, 20, 306, 300, 'by Fabien Tassin <fta@oleane.net>');
# Add the missing PDF objects and a the footer then close the file $pdf->close;
PDF::Create allows you to create PDF documents using a large number of primitives, and emit the result as a PDF file or stream. PDF stands for Portable Document Format.
Documents can have several pages, a table of content, an information section and many other PDF elements. More functionnalities will be added as needs arise.
Documents are constructed on the fly so the memory footprint is not tied to the size of the pages but only to their number.
new
new()
message to the PDF::Create class.
For example:
my $pdf = new PDF::Create;
This will create an empty PDF structure. A lot of attributes can be used:
- filename: destination file that will contain the resulting PDF or ...
- fh: ... an already opened filehandle
- Version: can be 1.0 to 1.3 (default: 1.2)
- PageMode: how the document should appear when opened. Allowed values are:
- UseNone: Open document with neither outline nor thumbnails visible. This is the default value.
- UseOutlines: Open document with outline visible.
- UseThumbs: Open document with thumbnails visible.
- FullScreen: Open document in full-screen mode. In full-screen mode, there is no menu bar, window controls, nor any other window present.
- Author: the name of the person who created this document
- Creator: if the document was converted into a PDF document from another form, this is the name of the application that created the original document.
- Title: the title of the document
- Subject: the subject of the document
- Keywords: keywords associated with the document
Example:
my $pdf = new PDF::Create('filename' => 'mypdf.pdf', 'Version' => 1.2, 'PageMode' => 'UseOutlines', 'Author' => 'Fabien Tassin', 'Title' => 'My title', );
The created object is returned.
close
add_comment [string]
new_outline [parameters]
Parameters can be:
- Title: the title of the outline. Mandatory.
- Destination: the destination of this outline. In this version, it is only possible to give a page as destination. The default destination is the current page.
- Parent: the parent of this outline in the outlines tree. This is an outline object.
Example:
my $outline = $pdf->new_outline('Title' => 'Item 1', 'Destination' => $page); $outline->new_outline('Title' => 'Item 1.1'); $pdf->new_outline('Title' => 'Item 1.2', 'Parent' => $outline); $pdf->new_outline('Title' => 'Item 2');
new_page
Parameters can be:
- Parent: the parent of this page in the pages tree. This is a page object.
- Resources: Resources required by this page.
- MediaBox: Rectangle specifying the natural size of the page, for example the dimensions of an A4 sheet of paper. The coordinates are measured in default user space units. It must be the reference of a 4 values array.
- CropBox: Rectangle specifying the default clipping region for the page when displayed or printed. The default is the value of the MediaBox.
- ArtBox: Rectangle specifying an area of the page to be used when placing PDF content into another application. The default is the value of the CropBox. [PDF 1.3]
- TrimBox: Rectangle specifying the intended finished size of the page (for example, the dimensions of an A4 sheet of paper). In some cases, the MediaBox will be a larger rectangle, which includes printing instructions, cut marks, or other content. The default is the value of the CropBox. [PDF 1.3].
- BleedBox: Rectangle specifying the region to which all page content should be clipped if the page is being output in a production environment. In such environments, a bleed area is desired, to accommodate physical limitations of cutting, folding, and trimming equipment. The actual printed page may include printer's marks that fall outside the bleed box. The default is the value of the CropBox. [PDF 1.3]
- Rotate: Specifies the number of degrees the page should be rotated clockwise when it is displayed or printed. This value must be zero (the default) or a multiple of 90.
font
Parameters can be:
- Subtype: Type of font. PDF defines some types of fonts. It must be one of the predefined type Type1, Type3, TrueType or Type0.
In this version, only Type1 is supported. This is the default value.
- Encoding: Specifies the encoding from which the new encoding differs. It must be one of the predefined encodings MacRomanEncoding, MacExpertEncoding or WinAnsiEncoding.
In this version, only WinAnsiEncoding is supported. This is the default value.
- BaseFont: The PostScript name of the font. It can be one of the following base font: Courier, Courier-Bold, Courier-BoldOblique, Courier-Oblique, Helvetica, Helvetica-Bold, Helvetica-BoldOblique, Helvetica-Oblique, Times-Roman, Times-Bold, Times-Italic, Times-BoldItalic, Symbol or ZapfDingbats. All of them are supported in this version except the last two ones.
The default value is Helvetica.
This section describes the methods that can be used by a PDF::Create::Page object.
In its current form, this class is divided into two main parts, one for drawing (using PostScript like paths) and one for writing.
Some methods are not described here because they must not be called
directly (e.g. new
and add
).
new_page params
See PDF::Create::new_page
string font size x y text
Example :
my $f1 = $pdf->font('Subtype' => 'Type1', 'Encoding' => 'WinAnsiEncoding', 'BaseFont' => 'Helvetica'); $page->string($f1, 20, 306, 396, "some text");
stringl font size x y text
string
.
stringr font size x y text
string
but right aligned.
stringc font size x y text
string
but centered.
string_width font text
line x1 y1 x2 y2
moveto x y
lineto x y
curveto x1 y1 x2 y2 x3 y3
rectangle x y w h
closepath
newpath
stroke
closestroke
fill
fill2
the PDF::Create::Page(3) manpage, perl(1)
Fabien Tassin (fta@oleane.net)
Copyright 1999, Fabien Tassin. All rights reserved. It may be used and modified freely, but I do request that this copyright notice remain attached to the file. You may modify this module as you wish, but if you redistribute a modified version, please attach a note listing the modifications you have made.
PDF::Create - create PDF files |