[racket] Generating Type 1 PDF fonts from plot
On 7/17/13 8:45 PM, David Van Horn wrote:
> I have generated PDF files from some plots with labels. The font for
> the label ends up embedded as a PostScript font (according to pdffonts).
> Is there a way to use Type 1 fonts?
>
> Here's an example:
>
> > more sin.rkt
> #lang racket
> (require plot)
> (plot (function sin (- pi) pi #:label "y = sin(x)")
> #:out-file "sin.pdf")
>
> > racket sin.rkt
> (object:2d-plot-snip% ...)
>
> > pdffonts sin.pdf
> name type emb sub uni
> object ID
> ------------------------------------ ----------------- --- --- ---
> ---------
> OZFXPV+CairoFont-0-0 CID Type 0C yes yes yes
> 5 0
> UEATNW+CairoFont-1-0 CID Type 0C yes yes yes
> 6 0
As a work-around it seems I can generate PS and convert:
> more sin.rkt
#lang racket
(require plot)
(plot (function sin (- pi) pi #:label "y = sin(x)")
#:out-file "sin.ps")
> ps2pdf -dEPSCrop sin.ps
> pdffonts sin.pdf
name type emb sub uni object ID
------------------------------------ ----------------- --- --- --- ---------
TKRSLQ+f-0-0 Type 1C yes yes no 8 0
WYAULZ+f-1-0 Type 1C yes yes no 10 0
David