Magento 2 pdf - 产品图像显示颠倒

时间:2018-04-29 22:37:02

标签: php magento pdf magento2

我已将代码添加到php文件中以在magento中生成pdf。目前,每个产品的图像都显示在列中,但它显示为颠倒。

我的代码:

foreach ($line as $column) 
{
   if($i == 1 && $flag)
   {
     $i++;
     if(array_key_exists('is_image', $column) && !is_null($column['text']))
     {
       $image = \Zend_Pdf_Image::imageWithPath($column['text']);
       $feed = $column['feed'];
       $page->drawImage($image, $feed, $this->y, $feed+70, $this->y-80);
       $maxHeight = 100;
     }
     continue 1;
   }
   $i++;
}

1 个答案:

答案 0 :(得分:0)

Emizen Tech模块出现了相同的问题,该模块用于打印带有产品图像的pdf发票。我修改了这条线

1

收件人:

$page->drawImage($image, $feed, $this->y, $feed+70, $this->y-80);

现在图像将正确显示在发票上。

相关问题