------------------------------------------------------------------------------- True type font tools ttftool font converter (Abiword package, redhat linux) convert truetype to other font formats ttmkfdir create a X windows font.dir map file for xfstt ghostscript program to convert ttf to type1 format Ex: xfstt --gslist --sync Package: ttf2pt1 (ttf to type1 conversion) Display a directory of fonts montage -tile 1x15 -geometry +0+1 -pointsize 36 \ `sh -c 'for i in *.ttf; do \\ echo -label $i -font $i label:ABC-xyz-0123; done'` \ -font Arial -pointsize 12 miff:- | display & ------------------------------------------------------------------------------- Figure out GOOD truetype fontnames... Using X font generator (not very usable) (cd dir; ttmkfdir) | grep '^font.ttf' The Abiword tool seems to be very good... /usr/lib/AbiSuite/bin/ttftool -f font.ttf -p /dev/fd/1 Compare the "/FullName" and "/FamilyName" output, ignoring string "Regular". Do not use "/FontName" as a space fault was found in font "optanb.ttf". And a number of extra "tags" was also seen, EG: "ArialMT" or even "TimesNewRomanPS-BoldMT" (from "timesbd.ttf"). -------------------------------------------------------------------------------