Skip to content
Advertisement

How do you add custom fonts in TCPDF?

I would like to add a custom font to a pdf I’m generating using TCPDF. I might be missing something but the docs seem to be out dated. They are referencing the addTTFfont() function but I think it’s been deprecated and no longer exists in the latest version of TCPDF.

I read that I need to convert the ttf file and put it in the fonts folder so I ran:

JavaScript

and it generated these files which are now in the fonts folder:

JavaScript

Then I tried to add the font:

JavaScript

but I’m getting an error:

JavaScript

Advertisement

Answer

I figured out my issue, I was almost there.

Here is a step by step:

First convert your font using the tcpdf_addfont.php tool font in the TCPDF tools folder:

JavaScript

This will generate the required files and put them in the TCPDF fonts folder. Check the fonts folder and copy the name of the font, in my case it was rumpelstiltskinwebfont.

In your code set the font using the font file’s name and write a line of text:

JavaScript

That’s it. Hope this helps someone. 🙂

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement