0

i'm using TCPDF library for generate PDF file, but i have problem with disabling font italic. I'm using writeHTML and have local css with body{font-style:normal;} but it's doesn't work.

Ok, i solved this problem.

I have twice

$pdf->SetFont('freeserif', '', 14, '', false);
$pdf->SetFont('times', 'BI', 20);
Marceli99
  • 25
  • 6

1 Answers1

0
$pdf->SetFont('times', 'BI', 20);

From Fonts:

SetFont(string family[,string style[,string size]])

style : Font style. Possible values are (case insensitive):

  • empty string: regular
  • B: bold
  • I: italic
  • U: underline

or any combination. The default value is regular.

Álvaro González
  • 142,137
  • 41
  • 261
  • 360