Why is there a left and top padding in a cell using TCPDF in php?
问题 I am printing a cell using the TCPDF(http://www.tcdf.org/) class in php. The cell should be placed into the top left corner. Everything works great, except that a left and top padding is added inside the cell. Here is my code: require_once('../config/lang/eng.php'); require_once('../tcpdf.php'); $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false); $pdf->SetMargins(0,0,0); $pdf->SetAutoPageBreak(0,0); $pdf->SetFont('dejavusans', '', 8.5, '', true); $pdf-