Im using reportlab to create pdfs, When I try to set font using the following method im getting KeyError

pdf = Canvas('test.pdf')
pdf.setFont('Tahoma', 16)

but if i use courier font im not getting any errors, please help to solve this problem

link|improve this question

63% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Perhabs Tahoma is a TrueType font, and you need to register it first. According to the user guide of ReportLab you need to do this:

from reportlab.pdfbase import pdfmetrics
from reportlab.pdfbase.ttfonts import TTFont

pdfmetrics.registerFont(TTFont('Vera', 'Vera.ttf'))
pdfmetrics.registerFont(TTFont('VeraBd', 'VeraBd.ttf'))
pdfmetrics.registerFont(TTFont('VeraIt', 'VeraIt.ttf'))
pdfmetrics.registerFont(TTFont('VeraBI', 'VeraBI.ttf'))

canvas.setFont('Vera', 32)
canvas.drawString(10, 150, "Some text encoded in UTF-8")
canvas.drawString(10, 100, "In the Vera TT Font!")

The canvas object has a getAvailableFonts method that should return all currently registered (and therefore usable) fonts.

link|improve this answer
Thanks you made my day, It worked, is there anyway to use opentype fonts in this way... – srisar Feb 4 '11 at 16:09
Last time I checked it had no support for opentype. Recently I needed to use a OTF, I could convert it to TTF with fontforge. But as OTF is a newer format, you might loose some features. Fortunately for me it didn't made a difference at that time. – Reiner Gerecke Feb 4 '11 at 16:13
I wanted to use Consolas font, but it seems opentype, thats why i asked. thanks for the great tip anyway.. – srisar Feb 4 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

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