SetDrawColor()的行为类似于SetFillColor()

时间:2018-07-04 12:05:05

标签: php fpdf

enter image description here

SetDrawColor()应该为单元格框架着色,但另一种颜色是作为背景色呈现。这是整个代码:-

    $pdf = new FPDF();
    $pdf->SetTextColor(103, 58, 183);
    $pdf->SetDrawColor(0, 80, 180);
    // Fourth Page --
    $pdf->AddPage();
    $pdf->SetFont('Arial','B',16);
    $pdf->Cell(0, 10, "Hello Santanu", 1, 1, 'C', true);

    $pdf->Output('helo.pdf', 'D');

1 个答案:

答案 0 :(得分:0)

在绘制任何单元格之前,您应该尝试使用SetFillColor,因为它默认为黑色。

$pdf->SetFillColor(0, 0, 0);