更改 TCPDF 中标题中的文本颜色
任何人都知道如何更改页眉和页脚中的文本颜色以及线条颜色? 在设置页眉/页脚之前简单地设置这两种颜色不起作用:
$pdf->SetTextColor(180);
$pdf->SetDrawColor(70);
谢谢。
Anyone knows how to change a color of text in header and footer and also line color??
Simply setting these two colors before setting header/footer doesn't work with:
$pdf->SetTextColor(180);
$pdf->SetDrawColor(70);
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的,找到了,
我想你必须更改 Header() 和 Footer() 公共函数中的字体(在 tcpdf.php 中)
对于文本颜色,请在 Header() 和/或 Footer() 函数中找到:
并将其更改为您喜欢的颜色。
至于线条颜色,找到:
并更改末尾的“颜色”数组。
干杯..
Ok, found it,
I guess you have to change font in Header() and Footer() public functions (in tcpdf.php)
For text color find:
in Header() and/or Footer() functions and change it to your liking.
As for line color, find:
and change the 'color' array at the end.
cheers..
或者您也可以这样做:
通过扩展核心类并仅扩展其页脚功能:
希望这会对某人有所帮助。
or alternatively you can do it this way too :
By extending core class and extending just its footer function :
Hope this will help someone.