gpt4 book ai didi

php - FPDF-SetFillColor

转载 作者:行者123 更新时间:2023-12-05 00:06:27 27 4
gpt4 key购买 nike

谁能向我解释一下 FPDF 中的这个函数是如何工作的?使用以下代码,我似乎无法从中获得任何颜色:

function Header()
{
// Logo
$this->Image($_SERVER['DOCUMENT_ROOT'].'/assets/documents/barcodes/'.$_SESSION["loggedin"].'.png',10,6,30);
// Arial bold 15
$this->SetFont('Arial','B',15);
// Move to the right
$this->Cell(80);
// Title
$this->Cell(75,25,'Technische beurs Sax',1,0,'C');
// Line break
$this->SetFillColor(0, 255, 0);
$this->Ln(40);
}

根据此示例,在扩展普通 FPDF 类的 PDF 类中调用此函数: http://www.fpdf.org/en/tutorial/tuto2.htm .

例如,“最终结果”应该是这样的:
http://technischforum.sax-professional.be/assets/documents/BevestigingMail.pdf

最佳答案

SetFillColor 不适用于整个页面,
要解决此问题,请添加一个矩形并填充它

这是黑色 A4

$pdf->SetFillColor(0,0,0);
$pdf->Rect(0, 0, 210, 297, 'F');

然后 SetXY 回到需要的位置

关于php - FPDF-SetFillColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18339881/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com