我在fpdf中有行生成函数,需要为整个文档中的所有标题生成具有唯一行宽的行。这是我的代码。
function createLine($x1,$y1,$x2,$y2){
$this->SetFont('Arial','B',7);
$this->SetLineWidth(.1);
$this->Line($x1, $y1, $x2, $y2);
}
但问题是,它不会生成指定行宽或粗体的行。 以下是调用函数的代码。
$x = $this->GetX();
$y = $this->GetY();
$this->createLine($x, $y,200,$y);
$this->Cell(60,5,'',0,2,'');
$this->SetFont('Courier','B',$fontSizelarge);// Title is bold
$this->Cell(128,5,$this->fieldTitles[1],0,2,'L');// Title
$this->SetFont('Courier','','7'); // Content is not bold.
$this->MultiCell(128,5,$ajaxResult['dis'] ,0,2,''); //Description Data
我尝试使用不同的线宽值,但它不起作用。