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

Wow, I can't believe I missed that one! So far, it seems promising, but you're right, the documentation is lacking. Thanks!

Replies are listed 'Best First'.
Re^3: Finding the right PDF module
by kcott (Archbishop) on Aug 17, 2011 at 05:59 UTC

    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

      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");