You can use:
-
PDF - a library for PDF access and manipulation in Perl
-
PDF::Template - Perl extension for separation of data and PDF document layout
-
HTML::HTMLDoc - Perl interface to the
htmldoc -
power tool for producing PDF-Files from HTML-Content
- PDF::Create - create PDF files
-
PDF::Reuse - Perl extention for reusing and mass producing PDF documents
I think that it's enough. I use
htmldoc directly for producing print view of my documents which created as HTML pages. It's very useful, power and easy using tool. But it has some disadvantages, of course. If you call this programm like this:
open (HTMLDOC, "|htmldoc -f PDF --webpage") or die $!;
...
close HTMLDOC or die $!;
and if there is a some error or warning (too much large table, for example), pipe is closed immediate and return no error code or message. It's a bug of programm and I spent a lot of time for finding this problem. And the latest version does not currently support stylesheets.
--------------------------------
SV* sv_bless(SV* sv, HV* stash);