source: other-projects/trunk/winbin/bin/ghostscript/lib/pdf2ps.cmd@ 17223

Last change on this file since 17223 was 17223, checked in by max, 16 years ago

Add Ghostscript binaries and libraries for windows.

File size: 812 bytes
Line 
1/* $Id: pdf2ps.cmd 6300 2005-12-28 19:56:24Z giles $ */
2/*
3 * This file is maintained by a user: if you have any questions about it,
4 * please contact Mark Hale ([email protected]).
5 */
6
7/* Convert PDF to PostScript. */
8
9parse arg params
10
11gs='@gsos2'
12inext='.pdf'
13outext='.ps'
14
15if params='' then call usage
16
17options='-dNOPAUSE -dBATCH -dSAFER -sDEVICE=pswrite'
18
19/* extract options from command line */
20i=1
21param=word(params,i)
22do while substr(param,1,1)='-'
23 options=options param
24 i=i+1
25 param=word(params,i)
26end
27
28infile=param
29if infile='' then call usage
30outfile=word(params,i+1)
31if outfile='' then do
32 outfile=infile''outext
33 infile=infile''inext
34end
35
36gs '-q -sOutputFile='outfile options infile
37exit
38
39usage:
40say 'Usage: pdf2ps [-dASCII85DecodePages=false] [-dLanguageLevel=n] input[.pdf output.ps]'
41exit
Note: See TracBrowser for help on using the repository browser.