Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我正在使用 FPDF,我在设置背景颜色方面遇到了一些问题。
目前我正在使用
$this->_FpdfGenerator->SetFillColor('239', 0, 0);
我也试过这个
$this->_FpdfGenerator->SetFillColor(239, 0, 0);
但背景颜色没有改变。
如果您查看文档,您必须提供绿色和蓝色分量值才能拥有您的颜色。
否则你会有一个灰度级。
设置填充颜色
mpdf->SetFillColor('RED'); // Just Make the 7th Parameter Equal to TRUE $mpdf->WriteCell(38, 10, 'HeLLOO', 1, 0, 'C', TRUE);