Error in Draw image on PDF using Zend Framework in Magento2

大兔子大兔子 提交于 2019-12-07 22:14:37

问题


I am working on create a catalog PDF in Magento-2 using Zend Framework. My code is here to print catalog image on PDF.

foreach ($collection as $product) 
    {
    $image = $product->getImage();
    $path =  $mediaUrl."catalog/product".$image;
    $imagef = Zend_Pdf_Image::imageWithPath($path);
    // write image to page
    $page->drawImage($imagef, 50, 50, 400, 400);
    }

But it did not work for me.

来源:https://stackoverflow.com/questions/48800875/error-in-draw-image-on-pdf-using-zend-framework-in-magento2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!