printing pdf
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    xyphoid
    Posts: 870 from 2008/7/11
    From: Delaware, USA
    Occasionally, you get a pdf which is not the right size (too small). Whe I zoom it and try to print, I can't seem to get the settings to print to the desired size, it seems rto just print the original size of the pdf in viewer. Is there a way around this?
  • »20.03.10 - 03:47
    Profile
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 599 from 2004/11/27
    I dont know but I would also be very interessted to know if this can be done, as I often need such a feature.

    Also how is it poosible to print multiple copies of a pdf, I wasn't able to do that when printing from Apdf.

    Any hints?
  • »20.03.10 - 09:31
    Profile Visit Website
  • Paladin of the Pegasos
    Paladin of the Pegasos
    Amigaharry2
    Posts: 1275 from 2010/1/6
    From: EU-Austria (Wien)
    Multiple printout:
    I save the printout as postscript-file and send it then multiple directly to my PS-printer (useing a small shell-script which sends the file x times to the printer.....).

    If you print via TP (not directly to a PS-printer):
    There is also a possibility to set number of gfx-copies in TP-prefs, but I don't know how, or if this influences the PS-output of TP.........never tried - maybe this will have no effect.....
    Peg2, 3xPowerMac G5, 2xPowerbookG4, 2x MacMiniG4, Efika (again), A3000T and life is never boring.....
  • »20.03.10 - 10:35
    Profile
  • Acolyte of the Butterfly
    Acolyte of the Butterfly
    Travis_H
    Posts: 147 from 2009/12/17
    From: Salem, Oregon,...
    I can confirm changing the number of copies in TurboPrint prefs does affect the number of times the file is printed. It worked on OS3.9 and it works with MOS 2.4.

    The 'Zoom' slider in APDF does not seem to make any difference here, either. You could always use Ghostscript (I use the GUI) to convert to an iff, then crop and print from there.

    TJH
  • »21.03.10 - 03:12
    Profile
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 599 from 2004/11/27
    @Amigaharry2

    it would be to ps only. Could you tell where to get that script please, so I can setup an automation with an f-key or so in the meantime that such is directly added to e. g. Apdf or other applications...
  • »22.03.10 - 06:16
    Profile Visit Website
  • Paladin of the Pegasos
    Paladin of the Pegasos
    Amigaharry2
    Posts: 1275 from 2010/1/6
    From: EU-Austria (Wien)
    This script I wrote myself....it is easy to do.....(AREXX)!
    I am not at home now - will look for it an post it....
    Peg2, 3xPowerMac G5, 2xPowerbookG4, 2x MacMiniG4, Efika (again), A3000T and life is never boring.....
  • »22.03.10 - 08:04
    Profile
  • Paladin of the Pegasos
    Paladin of the Pegasos
    Amigaharry2
    Posts: 1275 from 2010/1/6
    From: EU-Austria (Wien)
    The AREXX-Script:

    /* Printprogram */

    say 'AREXX-Script for multiple printout!'; say
    say 'Filename and how many times:'
    Parse pull Filename k

    do i = 1 to k
    address command 'copy' Filename 'to PAR:' ; say
    say 'Sheet Nr.:' i 'done!'
    end
    say 'Ready!'
    /*End*/

    Change PAR: to your approperiate devicename (eg PS: for TP, etc.).....
    Start with rx <Script>.




    [ Editiert durch Amigaharry2 an 2010/3/23 14:48 ]
    Peg2, 3xPowerMac G5, 2xPowerbookG4, 2x MacMiniG4, Efika (again), A3000T and life is never boring.....
  • »23.03.10 - 11:47
    Profile
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 599 from 2004/11/27
    @ Amigaharry2

    thanks very much for your script! :-) I will try this asap.

    Regards

    Christoph
  • »24.03.10 - 05:06
    Profile Visit Website