我正在使用TCPDF库在我的项目中生成pdf文档。问题是我想在pdf中制作角色功能区(如图所示),但未能做到这一点,Web中提供的使用css的示例,它们在pdf中对我不起作用。
答案 0 :(得分:0)
答案 1 :(得分:0)
你必须像这样设置coord x,y
$x = $pdf->GetX();
$y = $pdf->GetY();
$col1 = "p.p Inmobiliaria xxxxxxxx \n Roxxxxx \n xxxx: xxxxxxx";
$col2 = "" . $nombre . " \n Rut: " . $rut . " \n Comprador";
$pdf->Image('firma.png', $x + 10, $y - 40, 0, 0);
$pdf->MultiCell(80, 6, $col1, 0, 1);
$pdf->SetXY($x + 120, $y);