FPDF 在 fancytable 中包含图像

FPDF Including an image in fancytable

我正在尝试在 FPDF fancytable 中插入图像。 我试图在 fancytable 函数中放入以下内容:

$this->Cell($w[1],6,$pdf->Image('lettre.jpg',0,0,20,0),'LRB',0,'C',$填充);

但我(当然)有以下错误消息:

PHP Notice: Undefined variable: pdf in /MyScript.php on line 143

Notice: Undefined variable: pdf in /MyScript.php on line 143

PHP Fatal error: Uncaught Error: Call to a member function Image() on null in /MyScript.php:143

Stack trace:

0 /MyScript.php(172): PDF->FancyTable(Array, Array)

1 {main} thrown in /MyScript.php on line 143

我明白我在fancytable函数里面调用了pdf函数(pdf函数的一部分),请问有解决办法吗?

谢谢!

该死,答案在问题中:刚刚用 $this 替换了 $pdf,它解决了我的问题..

我把问题放在这里以防万一有一天有人遇到同样的错误^^