I've got pycairo installed and I'm able to render text with basic fonts, but the principal thing I'm trying to accomplish is to use TTF fonts.

Sadly, there don't appear to be any modern Python bindings for FreeType. Cairo has this support, but that hasn't been extended to Python.

I did find this, http://cairographics.org/freetypepython/, which purports to be able to import TTF fonts for use in PyCairo. However, when I run it I get this error ()

Error creating FreeType font face for <my font file>

This is likely a separate issue from the question I'm asking here. Regardless, the only potential solution not working.

I started out by using PIL. I stopped using it because of odd clipping on certain TTF fonts when using Draw.text().

So I'm curious to see if there is a way to use PIL to load the TTF fonts (which it seems to handle ok), and then use the PIL ImageFont object as a Cairo font object.

Alternatively, is there a way to use Cairo from the commandline? I could subprocess to it to render my text as images and just return to Python that way.

link|improve this question

50% accept rate
feedback

1 Answer

maybe you can try aggdraw instead of pil? I mean pil + aggdraw without clipping.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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