in reply to Re^2: Finding the right PDF module
in thread Finding the right PDF module

There's a number of example scripts you may also find helpful. They come bundled with the distributions but you can also read them online (linked from their MANIFEST files): PDF::API2 examples/* and PDF::API2::Simple examples/*. If you dig around in the MANIFESTs, you may find useful snippets in other directories such as t/* and contrib/*.

-- Ken

Replies are listed 'Best First'.
Re^4: Finding the right PDF module
by pvaldes (Chaplain) on Aug 17, 2011 at 19:07 UTC

    Until you find the module, if you have a ps and want to convert it to a pdf you can simply cheat and use something like this in your script

    system("ps2pdf $ps_input_file -o $pdf_output_file");