8

我想要它,这样说白色的文本将使用 SetTextColor 作为白色,而橙色使用橙色。

$pdf->SetTextColor(255,255,255);
$pdf->Cell(50,0,'WHITE ORANGE ORANGE WHITE',0,1,'C');

如何影响“橙色”单词以使用橙色文本颜色?

4

7 回答 7

5

有一个小技巧是可能的。我刚刚让它打印了 2 个单元格,一个接一个,如下所示:

//Setting the text color to black
$pdf->SetTextColor(0,0,0);

//Printing my cell      
$pdf->SetFont('Arial','B');
$pdf->Cell(55,5,"Black Text ",1,0,'C');
$pdf->SetXY($coordXbase,$coordY);

//Setting the text color to red
$pdf->SetTextColor(194,8,8);

//Printing another cell, over the other
$pdf->SetFont('Arial','B');
//Give some space from the left border, and print the red text after the black text that is in the cell behind this one.
$pdf->Cell(55,5,"                        Red Text",0,0,'C');
$pdf->SetXY($coordXbase,$coordY);

//Setting the text color back to back, in the next cells.
$pdf->SetTextColor(0,0,0);

结果是这样的:

多色单元格结果

由于我有点着急,我没有时间创建一些函数来帮助解决这个问题,但这将是一个很好的起点:)

PS:告诉你们是否找到更简单的方法。

于 2013-06-29T13:22:56.853 回答
5

我也需要那个功能。这是我编写的用于执行简单彩色字符串的函数:

function cellMultiColor($stringParts) {
    $currentPointerPosition = 0;
    foreach ($stringParts as $part) {
        // Set the pointer to the end of the previous string part
        $this->_pdf->SetX($currentPointerPosition);

        // Get the color from the string part
        $this->_pdf->SetTextColor($part['color'][0], $part['color'][1], $part['color'][2]);

        $this->_pdf->Cell($this->_pdf->GetStringWidth($part['text']), 10, $part['text']);

        // Update the pointer to the end of the current string part
        $currentPointerPosition += $this->_pdf->GetStringWidth($part['text']);
    }

你像这样使用它:

cellMultiColor([
    [
        'text' => 'Colored string example: ',
        'color' => [0, 0, 0],
    ],
    [
        'text' => 'red',
        'color' => [255, 0, 0],
    ],
    [
        'text' => ', ',
        'color' => [0, 0, 0],
    ],
    [
        'text' => 'blue',
        'color' => [0, 0, 255],
    ],
]);
于 2014-01-16T16:30:59.730 回答
3

如果您不需要使用 Cell 方法,则可以改用 Write 方法:

$pdf->SetFont('Arial','b',12);
$pdf->SetTextColor(153,0,153);
$pdf->Write(7,'Text in color, ');
$pdf->SetFont('Arial','',12);
$pdf->SetTextColor(0,0,0);
$pdf->Write(7,'and text in black all in the same line'));
$pdf->Ln(7);
于 2016-04-13T18:50:42.703 回答
1

我不得不做类似的事情。而不是颜色,我不得不改变字体的大小。在我的单元格中,我改为调用该函数,在您的情况下,您可以这样做

$pdf->Cell(50,0,white($pdf,'White').orange($pdf,'orange'),0,1,'C');

并将函数定义为

function white($pdf,$val){
              $pdf->SetTextColor(255,255,255);
              return $pdf->Text(0,0,$val);
              }

橙色也是如此。

提示:要正确定位它,请使用 getX() 和 getY()

于 2014-04-04T12:59:49.540 回答
1

您也可以使用这样的writeHTML方法(tcpdf ver 6.2)

$html = 'Simple text <span style="color: rgb(255,66,14);">Orange</span> simple  <span style="color: rgb(12,128,128);">Turquoise</span>';
$this->writeHTML($html, true, false, true, false, '');
于 2017-06-16T20:39:49.023 回答
0

答案#1:你不能。根据定义,单元格的字体和颜色是统一的。您可以使用 getStringWidth 测量单词的宽度,并在一系列单元格中进行测量。

答案 #2:许多贡献的脚本都是基于构建内置函数的变体。毕竟,您拥有所有 FPDF 的 PHP 代码。您可以制作自己的 Cell_plus 函数,该函数采用一组短语和另一个数组或两个或三个属性。然后可能将其作为附加脚本提供。

于 2013-01-15T05:53:42.640 回答
0

你应该替换这个:

$pdf->Cell(50,0,'WHITE ORANGE ORANGE WHITE',0,1,'C');

为了这

$pdf->Cell(50,0,'WHITE ORANGE ORANGE WHITE',0,1,'C', true);

//在最后添加真正的参数

于 2019-01-24T15:44:12.130 回答