1
我有TCPDF和SVG圖像的問題。PHP - tcpdf multiCell image
我需要視野圖像中細胞作爲表(例如3個COLS和許多行)。在生成的PDF
圖像上新的生產線,而不是掌握。
我的代碼:
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);
}
你能幫助我嗎? 謝謝。