我正在尝试在PHP中由FPDF生成的PDF文件中执行以下布局。
--------------------------------------------------
| | Text1 |
| IMAGE | Text2 |
| | Text3 |
--------------------------------------------------
但是现在我无法弄明白该怎么做。
这是我正在使用的代码
public function floatingImage($imgPath, $height) {
list($w, $h) = getimagesize($imgPath);
$ratio = $w / $h;
$imgWidth = $height * $ratio;
$this->Image($imgPath, $this->GetX(), $this->GetY(), 140, 100);
$this->x += $imgWidth;
}
/* Logbuch is our extension from FPDI, but there's nothing changed
* only a custom header, footer and the floatingImage and loadMapImage function are part of it
*/
$pdf = new logbuch();
// Frontpage
$pdf->AddPage();
$mapImage = $pdf->loadMapImage();
$pdf->setJPEGQuality(75);
$x = 15; $y = 21; $w = 100;
$pdf->floatingImage($mapImage, 100, 100);
$pdf->SetFillColor(154,222,229);
$pdf->Cell(0,0,"Test",0,0,'R',true);
$pdf->Ln();
$pdf->Cell(100,0,"Test",0,0,'R',true);
$pdf->Ln();
$pdf->Cell(100,0,"Test",0,0,'R',true);
这是我现在正在生成的结果
如果我将最后两个单元格的宽度更改为100,它将如下所示:
这是几乎我想要的,细胞必须与右侧对齐。我怎么能这样做?
答案 0 :(得分:1)
我自己找到了答案
您可以将X
值设置为pdf,并确定X轴上的位置。
$pdf->Cell(0,0,"Test",0,0,'R',true);
$pdf->Ln();
$pdf->SetX(100); //The next cell will be set 100 units to the right
$pdf->Cell(100,0,"Test",0,0,'R',true);
$pdf->Ln();
Importend要提到的是,在每个写入的单元格X
之后,将从Cell()
函数中赋予一个新值。所以在创建新Cell之前需要SetX()
!