Re: embedding fonts in eps files [message #48726 is a reply to message #48723] |
Mon, 15 May 2006 16:03   |
George N. White III
Messages: 56 Registered: September 2000
|
Member |
|
|
On Mon, 15 May 2006, Maarten wrote:
>
> Geoff Cureton wrote:
>> I just submitted a journal manuscript (to IEEE-TGRS, if that helps), and
>> used the IEEE-TGRS graphics file checker to check my encapsulated
>> postscript figures (generated using IDL). The checker said that the eps
>> files did not have the required fonts "embedded". Does anyone know if the
>> embedding of fonts for IDL-generated EPS files is something that can be
>> specified within IDL? Anyone had this problem before?
>
> The only fonts IDL can use in eps output (AFAIK) are the base 14
> postscript fonts that (at least in pdf) should never be embedded. But,
> OK, if the journal insists:
Replacing fonts with outline paths in figures is generally the best
approach. Many publishers (actually often the lowest bid print shop) are
under the impression that EPS is what you get from Adobe Illustrator and
nothing else, and expect to be able to load "EPS" files and edit them
in Illustrator. There are still problems if the embedded font isn't one
that is installed on the system running Illustrator.
> 1 - Convert the eps to pdf (epstopdf that comes with TeX distributions
> will do just fine).
I'm not sure this step is neecessary -- perhaps it helps with certain
files that call themselves EPS but really are something quite different.
> 2 - Now the tricky bit: obtaining an eps file without the fonts:
>
> gs -dNOPAUSE -dNOCACHE -dBATCH -sDEVICE=epswrite \
> -sOutputFile=your-output-file.eps \
> your-source-file.pdf
>
> (change file-names as needed)
>
> This will replace the fonts with their outlines, and produce an eps
> file that is perfectly acceptable (it doesn't rely on external files at
> all).
The tricky thing here is to know that the "-dNOCACHE" converts fonts to
outline paths, without it you get bitmaps!
--
George N. White III <aa056@chebucto.ns.ca>
|
|
|