I have problem with TCPDF and SVG images.
I need view image in cell as table (for example 3 cols and many rows).
Images in generated PDF are on new line and not abreast.
My Code:
public function addImage($fileName){
$this->x=$this->_pdfObject->getX();
$this->y=$this->_pdfObject->getY();
$this->_pdfObject->setXY($this->x, $this->y);
$this->_pdfObject->MultiCell(0, 0, '<img src="'.$fileName.'">', 0, 'L', 0, 1, '', '', true, null, true);
}
Can you help me, please? Thanks.