1

我必须使用 zend_PDF 生成产品图像的 pdf。我试过下面的代码

 $path=$this->getImageUrl($_product) 

 $imagePath=$path;
 $image = Zend_Pdf_Image::imageWithPath($imagePath);
 $page->drawImage($image, 40,764,240, 820);

这不起作用。任何人都可以帮助我如何正确提供产品图片的网址。

4

1 回答 1

1

你的代码是错误的。在这条线上。

$path = $this->getImageUrl($_product);

试试这个正确的:

$path = $_product->getImageUrl();

并查看此参考链接

于 2012-08-27T07:45:31.300 回答