On Fri, 02 Jun 2006 12:23:46 +1000, Anthony Thyssen wrote:

Hi Anthony

Use Perl to /combine/ PDFs. It's instantaneous.

#!/usr/bin/perl
#
# Name:
#       pdf-combiner.pl.

use strict;
use warnings;

use PDF::Reuse;

# -------------

prFile('combo.pdf'); # Output.

for (qw/a b c d/) # Inputs.
{
        prImage("result_$_.pdf");
        prPage();
}

prEnd();


--
Ron Savage
[EMAIL PROTECTED]
http://savage.net.au/index.html


_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to