home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Magazine 2002 February
/
INTERNET88.ISO
/
pc
/
software
/
windows
/
bits
/
pdf995
/
data1.cab
/
Program_Executable_Files
/
res
/
pdfopt.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
2001-12-08
|
381 b
|
23 lines
@echo off
@rem $RCSfile: pdfopt.bat,v $ $Revision: 1.2.2.1 $
@rem Convert PDF to "optimized" form.
if "%1"=="" goto usage
if "%2"=="" goto usage
call gssetgs.bat
echo -q -dNODISPLAY -dSAFER >_.at
:cp
if "%3"=="" goto doit
echo %1 >>_.at
shift
goto cp
:doit
%GSC% -q @_.at -- pdfopt.ps %1 %2
goto end
:usage
echo "Usage: pdfopt input.pdf output.pdf"
:end