bespoke printing with acrobat and perl

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default bespoke printing with acrobat and perl

    Hi All,

    First post here!

    I am running Perl 5.8 on NT 4.0

    I have set up an FTP print server which automates the printing of any
    pdf dropped into a watched folder before sending it to a holding area
    where, after 3 days, it will be deleted.

    I need to make the process more sophistcated by having 3 ftp folders.
    These would be to either send it to a mono printer, send to a colour
    printer or print only the first page (mono).

    The problem I have is that the line command options for Acrobat are
    very restricted.

    Does anyone have any ideas on what I could plug into the Perl scripts
    get what I want? Is there a module that I can use? I am very new to
    Perl, so please be gentle with me!

    Cheers

    Jimbo
    jimbo2112 Guest

  2. Similar Questions and Discussions

    1. Making a very bespoke xml gallery
      Hello people :-) Having come up with a new design for my friend's jewellery website that I'm building in xhtml and CSS, I've decided to go for...
    2. Bespoke Video Root
      Hi all, I have all our FLV media in a directory structure on a alternative drive on the physical server. My question is, how can I configure the...
    3. Start printing at the end of the previous line in Perl
      Does anyone know who to tab to then end of the previous line in Perl? apple, banana and orange would start on the next line where the "s" in fruits...
    4. Acrobat 7 Pro printing
      I have Acrobat 7 Professional installed as part of CS2. The printing is set to print to Postscript Level 3 printers. I have a Level 2 printer. I can...
    5. Printing from Acrobat
      I'm trying to print to a PS level 3 imagesetter from Acrobat 7.0 Pro using the Tiger OS to send the file to the NT RIP. Since the spot color is...
  3. #2

    Default Re: bespoke printing with acrobat and perl

    On 25 Sep 2003 04:15:39 -0700, jimbo2112 wrote:
    > The problem I have is that the line command options for Acrobat are
    > very restricted.
    Hav you tried opening the files with ghostview? If that works OK, you
    can use ghostscript to print them, as it supports plenty of command
    line options. Just out of interest, what operating system would this
    be on?

    --
    Stephen Patterson [url]http://patter.mine.nu/[/url]
    [email]steveSPAM@.patter.mine.nu[/email] remove SPAM to reply
    Linux Counter No: 142831 GPG Public key: 252B8B37
    Last one down the pub's an MCSE
    Stephen Patterson Guest

  4. #3

    Default Re: bespoke printing with acrobat and perl

    [email]mjames@bmjgroup.com[/email] (jimbo2112) wrote in
    news:41b43f9c.0309250315.33f73030@posting.google.c om:
    > I need to make the process more sophistcated by having 3 ftp folders.
    > These would be to either send it to a mono printer, send to a colour
    > printer or print only the first page (mono).
    >
    > The problem I have is that the line command options for Acrobat are
    > very restricted.
    >
    > Does anyone have any ideas on what I could plug into the Perl scripts
    > get what I want? Is there a module that I can use? I am very new to
    > Perl, so please be gentle with me!

    Take a look at the commandline switches for Acrobat Reader. I remember
    seeing something that showed you could either give it the name of the PDF
    and a single letter switch (/p or something like that) or else you could
    specify which printer driver and which print queue to send it to. That
    ought to solve the mono vs color printing.

    As for printing only the first page, you might want to look at the
    PDF::API2 module. You could extract the first page of a PDF with it, and
    send that to the printer.

    Rick
    Rick Nakroshis Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139