You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
318 B
17 lines
318 B
@echo off
|
|
@rem Convert PDF to DSC
|
|
|
|
if %1/==/ goto usage
|
|
if %2/==/ goto usage
|
|
call "%~dp0gssetgs.bat"
|
|
|
|
rem Watcom C deletes = signs, so use # instead.
|
|
%GSC% -q -dNODISPLAY -P- -dSAFER -dDELAYSAFER -sPDFname#%1 -sDSCname#%2 -sOutputFile#%2 pdf2dsc.ps
|
|
goto end
|
|
|
|
:usage
|
|
echo "Usage: pdf2dsc input.pdf output.dsc"
|
|
|
|
:end
|
|
|
|
|