我设法在 TCPDF (Garamond.ttf) 中安装了一种新字体。它包括粗体和斜体,但似乎我不能同时使用它们:
$font1=$this->pdf->addTTFfont('fonts/GARA.ttf', 'TrueTypeUnicode', '', 32);
$font2=$this->pdf->addTTFfont('fonts/GARABD.ttf', 'TrueTypeUnicode', '', 32);
$this->pdf->SetFont($font1, '', 7, '', false);
//$this->pdf->SetFont($font2, '', 7, '', false);
我呈现 HTML 代码:
$f1=$this->load->view('/pdf/FicheDecouverte.php',$data,true);
$this->pdf->writeHTML($f1, true, 0, true, 0);
//Close and output PDF document
$this->pdf->Output('DomLoc', 'I');
它要么是粗体要么是正常的。我如何同时使用它们,因为我的 cssfont-weight
属性似乎被忽略了。
CSS:
.title {
color: white;
font-weight: bold;
font-size: 9pt;
text-align: center;
background-color: #07636B;
}