in reply to repeated merging of PDF-Files

Hi holli,

I can't help you solve the issue with PDF::API2. I'm using PDF::Reuse which does not rely on this package. You may want to see if you can work it into merge subroutine to see if you still get the same errors.

Right now I'm having a problem with merging some data. I've been in touch with the author and it should hopefully be resolved soon.

Good luck,
William

Replies are listed 'Best First'.
Re^2: repeated merging of PDF-Files
by holli (Abbot) on Feb 03, 2005 at 14:07 UTC
    I have already tried that module and ran into another bug. Some documents created via PDFWriter are cut off a cm at the top.

    But the code is much shorter ,)
    prFile ("out.pdf"); for ( @pdf ) { prDoc ($_); } prEnd;

    holli, regexed monk

      I had a somewhat similar problem because the incoming pdf was 8.5x11. I used prMbox to set the page margins. The default seems to be US Letter which is probably incorrect for your PDFs (which I'm guessing are A4 since you're metric measurements).

      William