show/hide this revision's text 3 rewrite answer

Whenever I

It would be nice if reportlab had native OTF support but all most people really need to use is a TrueType version of a particular OpenType fonts with reportlab, font. I just use a used this fontforge script to convert them the font I needed to TrueType insteadwith perfect results.

From http://www.se.eecs.uni-kassel.de/~thm/OpenOffice.org/bugs.html :

#!/usr/bin/fontforge
# Quick and dirty hack: converts a font to truetype (.ttf)
Print("Opening "+$1);
Open($1);
Print("Saving "+$1:r+".ttf");
Generate($1:r+".ttf");
Quit(0);
show/hide this revision's text 2 add script

Whenever I need to use OpenType fonts with reportlab, I just use a fontforge script to convert them to TrueType innsteadinstead.

From http://www.se.eecs.uni-kassel.de/~thm/OpenOffice.org/bugs.html :

#!/usr/bin/fontforge
# Quick and dirty hack: converts a font to truetype (.ttf)
Print("Opening "+$1);
Open($1);
Print("Saving "+$1:r+".ttf");
Generate($1:r+".ttf");
Quit(0);
show/hide this revision's text 1

Whenever I need to use OpenType fonts with reportlab, I just use a fontforge script to convert them to TrueType innstead.