// set font
$pdf->SetFont('helvetica', '', 12);
i changed
// set font
$pdf->SetFont('DejaVuSans',
it worked correctly.
Main Topics
Browse All Topicsi want to create pdf pages via php. i find a library for that.
http://www.tecnick.com/pub
supports UTF-8 Unicode and Right-To-Left languages;
there is saying it supports utf-8 but below in code i can not write utf-8 encoded text to pdf.
is my there is a problem in font. in code below characters are not shown i think there is a problem in experts-exchange for turkish characters.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: psimationPosted on 2009-09-13 at 09:59:39ID: 25320948
When I look at the example here: http://www.tecnick.com/pag efiles/tcp df/example _008.phps it looks like UTF-8 works quite well.
ble_data_d emo.txt');
,"^elale 1hlamur ");
"4"),array ("5","6"," 7","8"));
Your code looks slightly different from the example they show specifically for external UTF-8 text files, but it may be that your utf-8 text file is not properly formatted?
If I look at your code staring on line 101:
//Data loading
//$data = $pdf->LoadData('../cache/ta
$text = iconv("iso-8859-9","utf-8"
$data = array(array($text,"2","3",
It looks like you are trying to bypass the loading method from an external .txt file.
Have you tried simply creating a utf-8 text file and allowing the LoadData method to parse it?