HTML2FPDF - 定位 writeHTML 输出
我有以下代码:
function convert($contents, $name){
echo($link); //prints nothing
$pdf=new HTML2FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10, "Entry Report");
$pdf->SetFont('Arial', '', 12);
$pdf->Cell(100,10, $_SESSION['currdate']);
$pdf->WriteHTML( $contents );
$pdf->Output($name, "D");
}
默认情况下,writeHTML 内容位于 PDF 顶部...如何偏移 writeHTML 函数放置在 pdf 中的书面内容...
I have the following code:
function convert($contents, $name){
echo($link); //prints nothing
$pdf=new HTML2FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10, "Entry Report");
$pdf->SetFont('Arial', '', 12);
$pdf->Cell(100,10, $_SESSION['currdate']);
$pdf->WriteHTML( $contents );
$pdf->Output($name, "D");
}
By default the writeHTML content is positioned within the PDF at the top...How do I offset the wrriten content that is placed in the pdf by the writeHTML function...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 FPDF 中,您可以使用 SetX()、SetY() 或 SetXY()。
In FPDF you can use SetX(), SetY() or SetXY().