如何使用TCPDF库在PDF中制作角色带

时间:2018-02-10 05:17:25

标签: php css codeigniter pdf tcpdf

我正在使用TCPDF库在我的项目中生成pdf文档。问题是我想在pdf中制作角色功能区(如图所示),但未能做到这一点,Web中提供的使用css的示例,它们在pdf中对我不起作用。

Sample Image

2 个答案:

答案 0 :(得分:0)

创建与此transparent image for ribbon一样的透明图片,与文档宽度相同,然后尝试this waythis way。我更喜欢第二个。

以前我为水印解决​​了更为纤细的问题。希望它对你有用。 :)

谢谢。

答案 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);