我想从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.
任何帮助。谢谢