Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是每当我尝试加载页面时显示的错误:
TCPDF ERROR: [Image] Unable to get image: /var/www/html/example/protected/extensions/tcpdf/cache/img_d41d8cd98f00b204e9800998ecf8427e
这是导致错误的行(我认为):
$pdf->Image('@',$logo);
img_d41d... 甚至不在缓存文件夹中。请帮忙。这让我发疯。
尝试类似:
$pdf->Image('@'.$logo)
(我假设 $logo 是您的 blob。) blob 数据需要附加到第一个参数中的“@”符号,而不是作为第二个参数发送。