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
|
feedback
|
|
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:
The canvas object has a | |||||||
feedback
|