gpt4 book ai didi

php - 带有函数图像绘制的 Zend pdf 错误

转载 作者:搜寻专家 更新时间:2023-10-31 21:36:40 25 4
gpt4 key购买 nike

我想从 zend 中的代码函数将图像放入我的 pdf 文件,我从这里得到简单的例子 http://framework.zend.com/manual/1.12/en/zend.pdf.drawing.html这是我的代码

    $image = Zend_Pdf_Image::imageWithPath("' . $base . '/images/logo1.png");
$page->drawImage($image, 100, 100, 400, 300);
// add page to document
$pdf->pages[] = $page;
$pdf->save("data/reports/-report.pdf");

但是我得到这样的错误

PDF error: Cannot create image resource. File not found.

任何帮助。谢谢

最佳答案

您在文件名中包含单引号。

$image = Zend_Pdf_Image::imageWithPath("' . $base . '/images/logo1.png");

改成这样

$image = Zend_Pdf_Image::imageWithPath($base . "/images/logo1.png");

关于php - 带有函数图像绘制的 Zend pdf 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17714565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com