source: other-projects/trunk/winbin/bin/ghostscript/lib/ps2ps2.bat@ 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: 530 bytes
Line 
1@echo off
2@rem $Id: ps2ps2.bat 6417 2005-12-29 01:11:43Z alexcher $
3@rem Converting Postscript 3 or PDF into PostScript 2.
4
5if %1/==/ goto usage
6if %2/==/ goto usage
7call gssetgs.bat
8echo -dNOPAUSE -dSAFER -dBATCH >_.at
9:cp
10if %3/==/ goto doit
11echo %1 >>_.at
12shift
13goto cp
14
15:doit
16rem Watcom C deletes = signs, so use # instead.
17%GSC% -q -sDEVICE#ps2write -sOutputFile#%2 @_.at %1
18if exist _.at erase _.at
19goto end
20
21:usage
22echo "Usage: ps2ps [options] input.ps output.ps"
23echo " e.g. ps2ps -sPAPERSIZE=a4 input.ps output.ps
24
25:end
Note: See TracBrowser for help on using the repository browser.