我们在哪里可以指定pdf中生成的列的宽度?
我已经使用 fpdf
库生成了 pdf。数据导出到 pdf 文档我想设置各个列单元格的宽度如何做到这一点 我知道在这个函数中必须做一些事情来增加宽度 函数 CalcWidths($width,$align) { //计算列的宽度 $表格宽度=0; foreach($this->aCols as $i=>$col) { $w=$col['w']; 如果($w==-1) $w=$width/count($this->aCols); elseif(substr($w,-1)=='%') $w=$w/100*$宽度; $this->aCols[$i]['w']=$w; $TableWidth+=$w; } if($align=='C') $this->TableX=max(($this->w-$TableWidth)/2,0); elseif($align=='R') $this->TableX=max($this->w-$this->rMargin-$TableWidth,0); 别的 $this->TableX=$this->lMargin; }
必须改变什么
I have generated a pdf using fpdf
library. The datas are exported to pdf document i want to set the width of the indivijual column cells how to do that
i know some thing has to be done here in this function to increase the widthfunction CalcWidths($width,$align)
{
//Compute the widths of the columns
$TableWidth=0;
foreach($this->aCols as $i=>$col)
{
$w=$col['w'];
if($w==-1)
$w=$width/count($this->aCols);
elseif(substr($w,-1)=='%')
$w=$w/100*$width;
$this->aCols[$i]['w']=$w;
$TableWidth+=$w;
}
if($align=='C')
$this->TableX=max(($this->w-$TableWidth)/2,0);
elseif($align=='R')
$this->TableX=max($this->w-$this->rMargin-$TableWidth,0);
else
$this->TableX=$this->lMargin;
}
what has to be changed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
宽度可以像这样分配fpdf,
但是字段值扩展,宽度也会增加。然后像这样使用
Width can be assigned the fpdf like this,
But the field values extends then width also increases. Then use like this