2011-05-01 82 views

回答

0

我使用TCPDF之前,並試圖很難知道它

你可以看到/配置/文件夾/tcpdf_config.php/文件

你應該查找用於

/** 
* header margin 
*/ 
define ('PDF_MARGIN_HEADER', 5); 

/** 
* footer margin 
*/ 
define ('PDF_MARGIN_FOOTER', 10); 

/** 
* top margin 
*/ 
define ('PDF_MARGIN_TOP', 27); 

/** 
* bottom margin 
*/ 
define ('PDF_MARGIN_BOTTOM', 25); 

/** 
* left margin 
*/ 
define ('PDF_MARGIN_LEFT', 15); 

/** 
* right margin 
*/ 
define ('PDF_MARGIN_RIGHT', 15); 
0

對於感興趣的,只是做如下,它會像一個魅力工作:

$pdf->SetMargins(0, 0, 0); 
$pdf->SetHeaderMargin(0); 
$pdf->SetFooterMargin(0); 
3

我用一個空表來設置保證金

<your top table> 
    <table border="0"> 
    <tr style="line-height: 40%;" > 
    <td></td> 
    </tr> 
    </table> 
    <your second table> 

享受它

+0

明確打出,巴迪。 :) – 2016-03-08 12:30:09