TCPDF如何禁用字体斜体?
TCPDF how to disable font italic?
我正在使用 TCPDF 库生成 PDF 文件,但我在禁用字体斜体方面遇到了问题。我正在使用 writeHTML 并使用 body{font-style:normal;} 本地 css 但它不起作用。
好的,我解决了这个问题。
我有两次
$pdf->SetFont('freeserif', '', 14, '', false);
$pdf->SetFont('times', 'BI', 20);
$pdf->SetFont('times', 'BI', 20);
来自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.
我正在使用 TCPDF 库生成 PDF 文件,但我在禁用字体斜体方面遇到了问题。我正在使用 writeHTML 并使用 body{font-style:normal;} 本地 css 但它不起作用。
好的,我解决了这个问题。
我有两次
$pdf->SetFont('freeserif', '', 14, '', false);
$pdf->SetFont('times', 'BI', 20);
$pdf->SetFont('times', 'BI', 20);
来自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.