我已将代码添加到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++;
}
答案 0 :(得分:0)
Emizen Tech模块出现了相同的问题,该模块用于打印带有产品图像的pdf发票。我修改了这条线
1
收件人:
$page->drawImage($image, $feed, $this->y, $feed+70, $this->y-80);
现在图像将正确显示在发票上。