为特定文本添加下划线 - FPDF
Underline to specific text - FPDF
我有一个 table 使用 FPDF 创建的。我的问题是如何为特定文本添加下划线?
例如,
姓名 |性别 |年龄
女士 |女 | 20
我想要 "Name, Gender & Age" 有下划线
到目前为止,这是我的代码
$p->Cell(20,5,'Name','LTR',0,'C',0);
$p->Cell(40,5,'Gender','TR',0,'C',0);
$p->Cell(40,5,'Age','TR',0,'C',0);
while(retrieve from DB)
提前致谢
下划线使用SetFont
。您可以将字体系列留空以保持不变。
$p->SetFont('','U');
$p->Cell(20,5,'Name','LTR',0,'C',0);
我有一个 table 使用 FPDF 创建的。我的问题是如何为特定文本添加下划线?
例如,
姓名 |性别 |年龄
女士 |女 | 20
我想要 "Name, Gender & Age" 有下划线
到目前为止,这是我的代码
$p->Cell(20,5,'Name','LTR',0,'C',0);
$p->Cell(40,5,'Gender','TR',0,'C',0);
$p->Cell(40,5,'Age','TR',0,'C',0);
while(retrieve from DB)
提前致谢
下划线使用SetFont
。您可以将字体系列留空以保持不变。
$p->SetFont('','U');
$p->Cell(20,5,'Name','LTR',0,'C',0);