如何在 FPDF 的 1 个单元格上设置字体 Arial 和符号
how to setFont Arial and symbol on 1 cell in FPDF
那么,如果我想用一个符号,但是符号后面有一个字,怎么办?
我想要这样的样子
Σsum
,这就是我一直在努力做的,,,
$this->SetFont('Arial','B',7);
$this->SetX(10);
$this->Cell(5,10,'NO.',1,0,'C',1);
$this->SetFont('Symbol','B',7);
$this->SetX(15);
$this->Cell(15,10,"SUM".chr(83),1,0,'C',1);
此代码显示您要查找的内容。
(注意 $pdf 而不是 $this)
$pdf->SetXY(10,10);
$pdf->SetFont('Symbol','B',7);
$pdf->Cell(10,10,'S',0,'','C');
$pdf->SetFont('Arial','B',7);
$pdf->Cell(-3,10,'sum',0,'','C');
那么,如果我想用一个符号,但是符号后面有一个字,怎么办? 我想要这样的样子
Σsum
,这就是我一直在努力做的,,,
$this->SetFont('Arial','B',7);
$this->SetX(10);
$this->Cell(5,10,'NO.',1,0,'C',1);
$this->SetFont('Symbol','B',7);
$this->SetX(15);
$this->Cell(15,10,"SUM".chr(83),1,0,'C',1);
此代码显示您要查找的内容。 (注意 $pdf 而不是 $this)
$pdf->SetXY(10,10);
$pdf->SetFont('Symbol','B',7);
$pdf->Cell(10,10,'S',0,'','C');
$pdf->SetFont('Arial','B',7);
$pdf->Cell(-3,10,'sum',0,'','C');