[Tex/LaTex] How to prevent GhostScript from rastering the font when converting PDF or EPS to EPS

ghostscript

I want to convert PDF or EPS to EPS using the following commands, respectively.

gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=epswrite -sOutputFile=output.eps input.pdf

or

gs -q -dNOPAUSE -dBATCH -dSAFER -sDEVICE=epswrite -sOutputFile=output.eps input.eps

How to prevent GhostScript from rastering the font when converting PDF or EPS to EPS?

Best Answer

You can add -dNOCACHE option. It is originally used for debugging, due to document of GS. But this is the only way I know.

Related Question