summaryrefslogtreecommitdiff
path: root/lib/ps2epsi.cmd
blob: c87d82e63ad09060288b1b1ff24c30d16314f65e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off
if %1/==/ goto usage
if %2/==/ goto usage

set infile=%1
set outfile=%2

rem Now convert the input to EPSF and add the Preview to the EPSF file
gsos2 -q -dNOOUTERSAVE -dNODISPLAY -dLastPage=1 -sOutputFile=%outfile% --permit-file-read=%infile% %~dp0ps2epsi.ps %infile%

goto end

:usage
echo "Usage: ps2epsi <infile.ps> <outfile.epi>"

:end