任何人都知道如何更改頁眉和頁腳中的文本顏色以及線條顏色? 設置頁眉/頁腳不工作之前,簡單地設置這兩種顏色:更改TCPDF標題中的文本顏色
$pdf->SetTextColor(180);
$pdf->SetDrawColor(70);
感謝。
任何人都知道如何更改頁眉和頁腳中的文本顏色以及線條顏色? 設置頁眉/頁腳不工作之前,簡單地設置這兩種顏色:更改TCPDF標題中的文本顏色
$pdf->SetTextColor(180);
$pdf->SetDrawColor(70);
感謝。
好了,找到了, 我猜你必須改變字體在頭()和頁腳()公共功能(在tcpdf.php) 對於文本的顏色找到:
$this->SetTextColor(0, 0, 0);
在Header()和/或Footer()函數中,並根據自己的喜好進行更改。
至於線顏色,發現:
$this->SetLineStyle(array('width' => 0.85/$this->k, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(70, 70, 70)));
並在結束改變它的 '顏色' 的數組。
歡呼聲..
或者你也可以做到這一點也以此方式:
通過擴展核心類和擴展只是它頁腳功能:
// Extend the TCPDF class to create custom Header and Footer
class MYPDF extends TCPDF {
// Page footer
public function Footer() {
//set text color
$this->SetTextColor(255,0,0);
}
}
// create new PDF document
$pdf = new MYPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false);
希望這會幫助別人。