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

I'm trying to make my text underlined in FPDF but it seems to be impossible... I'm not using HTML. I'm using an DejaVu unicode font, which supports UTF-8, and also its my first time working with the FPDF.

Is that even possible? Please give me some solutions.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try this :

$fpdf->SetFont('Dejavu','U'); //Where "U" means underline.

See also (in german) http://www.fpdf.de/funktionsreferenz/?funktion=SetFont

share|improve this answer
Thanks for your reply, unfortunately the arial doesn't support a special characters, and I'm forced to use the Dejavu font to support unicode. – Scott Nov 28 '12 at 5:52
it should work also with Dejavu – Thomas Lauria Nov 28 '12 at 6:00
$fpdf->SetFont('','U'); was enough. Thanks ! – Scott Nov 28 '12 at 6:26

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.