Hola amigos, necesito de su ayuda para poner las imagenes en una tabla con la libreria ezPDF
les dejo el ejemplo aqui, como esta actualmente:
http://www.soluciones360.com.mx/purchaseOrder.pdf
cada una de las imágenes deben de ir al principio cada una en un row
creo el array:
Código PHP:
foreach($result2 as $row){
$data[]=array(
'<b>Imagen</b>'=>$pdf->ezImage('../images/products/'.$row['img'],0,80,1,'left'),
'<b>Num Art</b>'=>utf8_decode($row['idDetailProd']),
'<b>Descripcion</b>'=>utf8_decode($row['descripton']),
'<b>Color</b>'=>utf8_decode($row['color']),
'<b>Lado</b>'=>utf8_decode($row['side']),
'<b>Medida</b>'=>utf8_decode($row['measure']),
'<b>Cantidad</b>'=>utf8_decode($row['quantity']),
'<b>Precio</b>'=>utf8_decode($row['price']),
'<b>Importe</b>'=>utf8_decode($row['total'])
);
}
con esto le doy las opciones e imprimo la tabla
Código PHP:
$optionsData = array('xPos' => '302','showHeadings'=>1,'shaded'=>1,'showLines'=>3,'width' => 585,'fontSize'=>9,'cols' =>array('<b>Cantidad</b>'=>array('justification'=>'right'),'<b>Importe</b>'=>array('justification'=>'right'),'<b>Precio</b>'=>array('justification'=>'right')));
$optionsNote = array('xPos' => '302','showHeadings'=>0,'shaded'=>0,'showLines'=>4,'width' => 585,'fontSize'=>9);
$pdf->ezTable($data,'','',$optionsData );
$pdf->ezStream();