TCPDF 灰色背景有几个单元格?

发布于 2024-08-24 09:24:40 字数 252 浏览 7 评论 0原文

我在 CakePHP 中使用 TCPDF 并尝试为几个单元格制作一些背景(灰色)。这里的想法是:

替代文字

因此灰色的东西必须以某种方式在包含文本的单元格之外定义。

有什么想法吗?
保罗

I'm using TCPDF in CakePHP and trying to make some background (grey) for few cells. Well here the idea:

alt text

so the grey thing would somehow have to be define outside of the cells containg text.

Any ideas?
Paul

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

不必你懂 2024-08-31 09:24:40

试试这个。

$this -> TCPDF -> SetFillColor(249,249,249); // Grey
$this -> TCPDF -> Cell(95,$cellHigh,$data,'L',0,'L',$fill,'',0,false,'T','C');

TCPDF 示例 No. 5 将为您提供不同的背景颜色。

try this.

$this -> TCPDF -> SetFillColor(249,249,249); // Grey
$this -> TCPDF -> Cell(95,$cellHigh,$data,'L',0,'L',$fill,'',0,false,'T','C');

The TCPDF example No. 5 will give you different background colors.

誰認得朕 2024-08-31 09:24:40

最简单的方法是以 HTML 形式提供内容,并包含一些简单的格式。

检查 TCPDF 示例中的示例 6

Easiest way is to deliver your content as HTML with some simple formating included.

Check example 6 from TCPDF examples

背叛残局 2024-08-31 09:24:40

TCPD在生成PDF时,遇到HTML中的表格时,习惯将背景颜色更改为灰色。

HTML 通常会有表格的背景颜色标签。

background-color:transparent

这使得 TCPDF 变成灰色。一个简单的修复方法就是用您喜欢的颜色替换 HTML 内容。使用 PHP 的示例

$html = str_replace("background-color:transparent","background-color:white", $html);

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.

background-color:transparent

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

$html = str_replace("background-color:transparent","background-color:white", $html);
不离久伴 2024-08-31 09:24:40

您可以使用以下代码:

<td style="background-color:red;">
  Your Data...
</td>

You can use the below code:

<td style="background-color:red;">
  Your Data...
</td>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文