PHP TCPDF remove header's bottom border

前端 未结 5 1729
隐瞒了意图╮
隐瞒了意图╮ 2020-12-30 21:06

I am trying to create a header in TCPDF, however it always have a border underneath of it. Is there a way I can remove the bottom border?

5条回答
  •  鱼传尺愫
    2020-12-30 21:47

    tcpdf.php:

    // print an ending header line
    $this->SetLineStyle(array('width' => 0.25 / $this->k, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 255, 255)));
    

提交回复
热议问题