时间:2021-07-01 10:21:17 帮助过:2人阅读
你需要在 $pdf->MultiCell($tax_width,6,$key,'T,B',0,'C',true);
之后(之前)指定当前位置
你需要在 $pdf->MultiCell($tax_width,6,$key,'T,B',0,'C',true);
之后(之前)指定当前位置
怎么指定呢,这个不好计算吧。。。表头部分字段是不一定,有多有少,有长有短,不知道怎么弄。。给点提示 该怎么定位?
不计算肯定是不行的!
$top = $pdf->gety(); //左上角的 Y 坐标$left = $pdf->getx(); //左上角的 X 坐标$height = 60; //表头高$width = 100; //列宽$ar = array('标题', '长标题长标题'); //列标题foreach($ar as $text) { $h = $height / ceil($pdf->GetStringWidth($text) / $width); //计算分行后的行高 $pdf->multicell($width, $h, $text, 1, 'C'); $pdf->setxy($this->getx() + $width, $top); //定位到下一列}