I'm using a font called a ttf font called FreeSans on linux with matplotlib. I create my figure as:

from matplotlib import rc
plt.rcParams['ps.useafm'] = True
rc('font',**{'family':'sans-serif','sans-serif':['FreeSans']})
plt.rcParams['pdf.fonttype'] = 42
plt.figure()
# plot figure...
plt.savefig("myfig.pdf")

When I open it on another program (e.g. illustrator on Mac OS X) then the font does not appear and the default font is used instead, since FreeSans is unavailable.

How can I make it so matplotlib embeds the font in every PDF it produces? I don't mind if the file is larger. Thanks.

link|improve this question

76% accept rate
feedback

1 Answer

Are you sure that it's not doing it already? From the website:

matplotlib has excellent text support, including mathematical expressions, truetype support for raster and vector outputs, newline separated text with arbitrary rotations, and unicode support. Because we embed the fonts directly in the output documents, eg for postscript or PDF, what you see on the screen is what you get in the hardcopy.

Back in the day, I used to output a .ps document and use ps2pdf with the -dEmbedAllFonts=true option.

link|improve this answer
But when I open it in illustrator, it tries to find FreeSans. It says the font doesn't exist and offers me to "embed" it, in which case it opens up the PDF using Illustrator's default Myriad Pro font. So it doesn't seem like FreeSans is embedded unless Illustrator is screwing up? – user248237 Jan 29 at 17:29
2  
The definitive thing to do is to get pdffonts from Xpdf and then run it on your pdf. It will tell you what fonts are embedded. – Nathan Binkert Jan 29 at 17:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.