some of the fonts like ArialMT, Arial-boldMT, PTSans-bold..

when i am using this font like

$pdf->SetFont("ArialMT", "", 22);

then i got error like..

TCPDF ERROR: Could not include font definition file 

when i saw the font folder of TCPDF library then i could not see this type of font..

how to install this font in TCPDF to solve the error and get effect of this font??

please help it is urgent..

thank you in advance..

i found one solution that in

"fonts/utils/ttf2ufm.exe"
then run following to command
1)$ ttf2ufm -a -F myfont.ttf 
and
2)$ php -q makefont.php myfont.ttf myfont.ufm 
first command is successfully executed but 2nd is not executing in windows command promt so tell me what i have to do for php file as you specify in "comici.php"..

link|improve this question

56% accept rate
feedback

1 Answer

Try this

$pdf->AddFont('Comic','I');
// is equivalent to:
$pdf->AddFont('Comic','I','comici.php');

Tou will find tutorial here.

http://api.joomla.org/com-tecnick-tcpdf/TCPDF.html#AddFont

link|improve this answer
i found one solution that in "fonts/utils/ttf2ufm.exe" then run following to command 1)$ ttf2ufm -a -F myfont.ttf and 2)$ php -q makefont.php myfont.ttf myfont.ufm first command is successfully executed but 2nd is not executing in windows command promt so tell me what i have to do for php file as you specify in "comici.php".. – phpdeveloper Apr 28 '11 at 5:28
I got the problem. I was not able to execute my php command. To execute php command i edited my system variable path in my case it was C:\wamp\bin\php\php5.2.9. then i was able to execute the php command. And repeated the same procedure again.. And it worked. – phpdeveloper Apr 29 '11 at 12:18
feedback

Your Answer

 
or
required, but never shown

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