TCPDF 灰色背景有几个单元格?
I'm using TCPDF in CakePHP and trying to make some background (grey) for few cells. Well here the idea:
so the grey thing would somehow have to be define outside of the cells containg text.
Any ideas?
Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个。
TCPDF 示例 No. 5 将为您提供不同的背景颜色。
try this.
The TCPDF example No. 5 will give you different background colors.
最简单的方法是以 HTML 形式提供内容,并包含一些简单的格式。
检查 TCPDF 示例中的示例 6
Easiest way is to deliver your content as HTML with some simple formating included.
Check example 6 from TCPDF examples
TCPD在生成PDF时,遇到HTML中的表格时,习惯将背景颜色更改为灰色。
HTML 通常会有表格的背景颜色标签。
这使得 TCPDF 变成灰色。一个简单的修复方法就是用您喜欢的颜色替换 HTML 内容。使用 PHP 的示例
TCPDF has the habit of changing the background color to GREY when it comes across Tables in the HTML when generating the PDF.
The HTML will be usually having this background color tag for table.
whicih makes TCPDF to make it GREY. A simple fix would be just replacing the HTML content with whichever color you like. An example using PHP
您可以使用以下代码:
You can use the below code: