Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In TCPDF, there are only a few fonts to choose from, to create pdf files. I want to set Tahoma as my pdf font. How can I include Tahoma in TCPDF??

Thanks in advance... :)

blasteralfred

share|improve this question

6 Answers

up vote 12 down vote accepted

The latest TCPDF version automatically convert fonts into TCPDF format using the addTTFfont() method. For example:

// convert TTF font to TCPDF format and store it on the fonts folder
$fontname = $pdf->addTTFfont('/path-to-font/FreeSerifItalic.ttf', 'TrueTypeUnicode', '', 96);

// use the font
$pdf->SetFont($fontname, '', 14, '', false);

For further information and examples, please check the http://www.tcpdf.org website

share|improve this answer

I have discovered a very good tool online. The only thing you need to do is to upload your .ttf file and then download the files and copy then into the /fonts folder.

http://www.xml-convert.com/en/convert-tff-font-to-afm-pfa-fpdf-tcpdf

share|improve this answer
how come this works sometimes but returns empty font definition files the other times? – lol Mar 2 at 4:54

I don't know anything about tcpdf or php, but I found this:

http://www.tcpdf.org/examples/example_033.phps

Apparently you just use the font's name, not the file name.


Strike one!

Okay, how about this page. To prep a font to be used by TCPDF, you have to run the file through a command line utility and a PHP script.

$ ttf2ufm -a -F myfont.ttf

And then:
$ php -q makefont.php myfont.ttf myfont.ufm
or
MakeFont(string $fontfile, string $fmfile [, boolean $embedded [, $enc="cp1252" [, $patch=array()]]])

ttf2ufm is distributed with TCPDF in the TCPDF/fonts directory.

share|improve this answer
These are bundled default fonts.. But I want to use custom fonts.. – blasteralfred Mar 11 '11 at 6:26

Latest TCPDF supports custom fonts.

Documentation about using custom fonts with TCPDF can be read here.

share|improve this answer

I have used following code create pdf using custom font(Bamini)

$pdf->addTTFfont('Bamini.TTF', 'TrueTypeUnicode', '', 32);
$pdf->AddFont('bamini','BI', 20,'','false');
$pdf->SetFont('bamini', '', 10);
  • In font folder create three files, But pdf not supports bamini fonts.

  • I have struggle last two days please advise me.

Thanks & Regards, Siva

share|improve this answer
Check the selected answer for this question. The method addTTFfont passes back the name of the font, which you need to use in the SetFont method. – Bjorn May 20 '12 at 10:20

the best way i have been tried and worked 100% put your TTF font in fonts folder and then use this constant K_PATH_FONTS + FONT NAME

   $font1 = $this->pdf->addTTFfont(K_PATH_FONTS . 'arial.ttf', 'TrueTypeUnicode', '', 8);
   $this->pdf->SetFont($font1, '', 15, '', false);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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