我必须使用zend_PDF生成产品图像的pdf。我试过以下代码
$path=$this->getImageUrl($_product)
$imagePath=$path;
$image = Zend_Pdf_Image::imageWithPath($imagePath);
$page->drawImage($image, 40,764,240, 820);
这不起作用。任何人都可以帮助我如何正确地提供产品图像的网址。
答案 0 :(得分:1)
你的代码错了。在这条线上。
$path = $this->getImageUrl($_product);
试试这个正确的:
$path = $_product->getImageUrl();
并查看此reference link