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.
 
 
 
 
 
 

15 lines
256 B

@echo off
@rem Convert .pfb fonts to .pfa format
if %1/==/ goto usage
if %2/==/ goto usage
if not %3/==/ goto usage
call "%~dp0gssetgs.bat"
%GSC% -P- -q -dNODISPLAY -- pfbtopfa.ps %1 %2
goto end
:usage
echo "Usage: pfbtopfa input.pfb output.pfa"
:end