2011-05-01 76 views
3

我爲使用TCPDF創建的PDF創建了自定義標題。現在我想添加一個藍色的線(大約2px寬),它貫穿頁眉底部的頁面,但不知道如何?TCPDF在標題頁中添加行

回答

10

我相信你做這樣的:

$style = array('width' => 0.5, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0)); 

$pdf->Line(5, 10, 80, 30, $style); 

下面是完整的例子

http://www.tcpdf.org/examples/example_012.phps

+0

@PabliSerbo - 感謝您的例子我現在明白了。但是,如何獲得標題的寬度來設置線寬? – Billy 2011-05-01 06:57:34

3

您還可以使用頁面軸:

$pdf->Line(5, $pdf->y, $pdf->w - 5, $pdf->y); 

但是,如果您正試圖呈現一個顏色爲<hr>的html標籤升需要調整TCPDF::DrawColor(這摘錄來自代碼,增加了一個曲線圖巴至一個數據報告的每行按$twidth$lengthmm):

$htmlbar = '<hr style="width:' . $lengthmm . 'mm;">'; 
$oldDrawColor = $pdf->DrawColor; 
$pdf->setDrawColor(121, 161, 46); 
$pdf->MultiCell($twidth,'2',$htmlbar,0,'L',$fill,1,'','',true,0,true,false,4,'T',false); 
$pdf->DrawColor = $oldDrawColor; 
0

關鍵是要得到的x值對所述第二點。 這是我要做的事:

$pageWidth = $pdf->getPageWidth(); // Get total page width, without margins 
$pageMargins = $pdf->getMargins();  // Get all margins as array 
$headerMargin = $pageMargins['header']; // Get the header margin 
$px2   = $pageWidth - $headerMargin; // Compute x value for second point of line 

$p1x = $this->getX(); 
$p1y = $this->getY(); 
$p2x = $px2; 
$p2y = $p1y; // Use same y for a straight line 
$style = array(); 
$this->Line($p1x, $p1y, $p2x, $p2y, $style); 

鏈接 TCPDF :: getMargins()
http://www.tcpdf.org/doc/code/classTCPDF.html#ae9bd660bf5b5e00eea82f1168cc67b5b

TCPDF :: getPageWidth()
http://www.tcpdf.org/doc/code/classTCPDF.html#a510ab21d6a373934bcd3bd4683704b7e

玩得開心!

2

我發現最簡單的方法把線

$pdf->writeHTML("<hr>", true, false, false, false, ''); 
0

只需添加一些HTML:)

$html ='<hr>'; 
$pdf->writeHTML($html, true, false, true, false, '');